
        :root {
            --primary-color: #2c3e50;
            --accent-color: #e67e22;
            --bg-light: #f9f9f9;
            --text-dark: #333;
            --white: #ffffff;
        }

        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            margin: 0;
            padding: 0;
            background-color: #fff;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
            border-bottom: 1px solid #eee;
        }

        h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .intro-text {
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Grid Layout for Areas */
        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .result-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .result-card:hover {
            transform: translateY(-5px);
        }

        .comparison-box {
            display: flex;
            background: #eee;
        }

        .compare-img {
            width: 50%;
            position: relative;
        }

        .compare-img img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }

        .label {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background: rgba(0,0,0,0.6);
            color: #fff;
            padding: 5px 12px;
            font-size: 0.8rem;
            text-transform: uppercase;
            border-radius: 4px;
        }

        .card-content {
            padding: 25px;
        }

        .card-content h3 {
            margin-top: 0;
            color: var(--primary-color);
            border-left: 4px solid var(--accent-color);
            padding-left: 15px;
        }

        /* CTA Section */
        .cta-section {
            background: var(--primary-color);
            color: white;
            text-align: center;
            padding: 50px 20px;
            margin: 60px 0;
            border-radius: 15px;
        }

        .cta-button {
            display: inline-block;
            background: var(--accent-color);
            color: white;
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            margin-top: 20px;
            transition: background 0.3s;
        }

        .cta-button:hover {
            background: #d35400;
        }

        /* Table Design */
        .summary-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
        }

        .summary-table th, .summary-table td {
            border: 1px solid #ddd;
            padding: 15px;
            text-align: left;
        }

        .summary-table th {
            background-color: var(--bg-light);
            color: var(--primary-color);
        }

        @media (max-width: 600px) {
            .results-grid {
                grid-template-columns: 1fr;
            }
            .comparison-box {
                flex-direction: column;
            }
            .compare-img {
                width: 100%;
            }
        }
    