/* Index - Page-specific styles */

/* Page-specific styles */
        .container {
            padding: 80px 70px;
        }

        .header {
            margin-bottom: 60px;
            display: grid;
            gap: 15px;
            justify-items: center;
        }

        .brand {
            margin-bottom: 10px;
            text-align: center;
        }

        .brand img {
            max-width: 420px;
            width: 100%;
            height: auto;
        }

        .brand-subline {
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #7f8c8d;
            margin-top: 8px;
        }

        h1 {
            font-size: 42px;
            margin: 15px 0 25px;
        }

        .tagline {
            font-size: 19px;
            line-height: 1.6;
            margin-top: 15px;
        }

        .opening-question {
            font-size: 22px;
            line-height: 1.6;
            text-align: center;
            color: #34495e;
            margin: 50px auto;
            max-width: 700px;
            font-style: italic;
        }

        .opening-answer {
            font-size: 28px;
            line-height: 1.4;
            text-align: center;
            color: #2c3e50;
            margin: 40px auto;
            max-width: 600px;
            font-weight: 600;
        }

        .intro {
            font-size: 18px;
            line-height: 1.9;
            margin-bottom: 50px;
            text-align: center;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
        }

        .intro-emphasis {
            padding: 30px;
            margin: 40px 0;
            font-size: 17px;
            line-height: 1.8;
        }

        .pull-quote {
            font-size: 20px;
            line-height: 1.7;
            text-align: center;
            font-style: italic;
            color: #555;
            margin: 60px auto;
            max-width: 650px;
            padding: 0 30px;
        }

        .section {
            margin: 50px 0;
        }

        .section h2 {
            font-size: 26px;
            margin-bottom: 20px;
            text-align: center;
        }

        .section p {
            text-align: justify;
            font-size: 17px;
            line-height: 1.9;
        }

        .what-you-get {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 8px;
            margin: 50px 0;
        }

        .what-you-get h2 {
            text-align: center;
            margin-bottom: 30px;
        }

        .what-you-get ul {
            list-style: none;
            padding: 0;
            max-width: 700px;
            margin: 0 auto;
        }

        .what-you-get li {
            padding: 15px 0 15px 30px;
            position: relative;
            font-size: 17px;
            line-height: 1.7;
        }

        .what-you-get li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #3498db;
            font-weight: bold;
        }

        .navigation {
            margin: 60px 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .nav-card {
            background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .nav-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color), transparent);
        }

        .nav-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-color: #34495e;
        }

        .nav-card h3 {
            font-size: 22px;
            margin-bottom: 12px;
        }

        .nav-card p {
            font-size: 15px;
            color: #7f8c8d;
            line-height: 1.6;
            margin: 0;
            text-align: left;
        }

        .nav-card .arrow {
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            color: var(--accent-color);
            opacity: 0.5;
            transition: all 0.3s ease;
        }

        .nav-card:hover .arrow {
            opacity: 1;
            right: 20px;
        }

        .cta-section {
            background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
            border: 2px solid #34495e;
            padding: 50px 40px;
            margin: 60px 0;
            border-radius: 12px;
            text-align: center;
        }

        .cta-section h2 {
            color: #34495e;
            font-size: 28px;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 30px;
            text-align: center;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer {
            margin-top: 80px;
        }

        /* Tablets and medium phones */
        @media (max-width: 768px) {
            .container {
                padding: 50px 25px;
            }

            h1 {
                font-size: 32px;
            }

            .tagline {
                font-size: 16px;
            }

            .opening-question {
                font-size: 18px;
                margin: 35px auto;
            }

            .opening-answer {
                font-size: 22px;
                margin: 30px auto;
            }

            .intro, .section p {
                font-size: 16px;
            }

            .pull-quote {
                font-size: 18px;
                padding: 0 15px;
                margin: 40px auto;
            }

            .what-you-get {
                padding: 30px 25px;
            }

            .what-you-get li {
                font-size: 16px;
            }

            .cta-section {
                padding: 35px 25px;
            }

            .nav-card {
                padding: 25px;
            }

            .nav-card .arrow {
                display: none;
            }
        }

        /* Small phones - optimized for readability */
        @media (max-width: 480px) {
            .container {
                padding: 35px 18px;
            }

            .header {
                margin-bottom: 35px;
            }

            .brand img {
                max-width: 100%;
            }

            .brand-subline {
                font-size: 12px;
                letter-spacing: 0.5px;
            }

            h1 {
                font-size: 26px;
                line-height: 1.3;
                margin: 12px 0 18px;
            }

            .opening-question {
                font-size: 17px;
                line-height: 1.5;
                margin: 30px auto;
                padding: 0 5px;
                text-align: left;
            }

            .opening-answer {
                font-size: 20px;
                line-height: 1.35;
                margin: 25px auto;
                padding: 0 5px;
                text-align: left;
            }

            .intro {
                font-size: 15px;
                line-height: 1.7;
                margin-bottom: 30px;
                text-align: left;
            }

            .intro-emphasis {
                padding: 18px;
                margin: 25px 0;
                font-size: 15px;
                line-height: 1.7;
            }

            .pull-quote {
                font-size: 17px;
                line-height: 1.6;
                padding: 0 8px;
                margin: 30px auto;
                text-align: left;
            }

            .section {
                margin: 35px 0;
            }

            .section h2 {
                font-size: 22px;
                margin-bottom: 15px;
            }

            .section p {
                font-size: 15px;
                line-height: 1.7;
                text-align: left !important;
            }

            .what-you-get {
                padding: 25px 18px;
                margin: 35px 0;
            }

            .what-you-get h2 {
                font-size: 22px;
                margin-bottom: 20px;
            }

            .what-you-get li {
                font-size: 15px;
                line-height: 1.6;
                padding: 12px 0 12px 25px;
            }

            .cta-section {
                padding: 30px 18px;
                margin: 40px 0;
            }

            .cta-section h2 {
                font-size: 23px;
                margin-bottom: 15px;
            }

            .cta-section p {
                font-size: 15px;
                line-height: 1.7;
                margin-bottom: 20px;
                text-align: left !important;
            }

            .nav-card {
                padding: 20px 18px;
            }

            .nav-card h3 {
                font-size: 19px;
                margin-bottom: 10px;
            }

            .nav-card p {
                font-size: 14px;
                line-height: 1.5;
            }

            .navigation {
                margin: 40px 0;
                gap: 15px;
            }

            .footer {
                margin-top: 50px;
                font-size: 13px;
            }
        }
