        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

        .header {
            background-color: #3a3a3a;
            padding: 20px 40px;
            display: flex;
            align-items: center;
        }

        .logo {
            color: white;
            font-size: 24px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }

        /* Banner styles */
        .banner {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .banner-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Banner CTA container positioned at bottom center; CTAs positioned within each half */
        .banner-cta {
            position: absolute;
            bottom: 60px; /* distance from bottom of banner */
            left: 0;
            width: 100%;
            text-align: center;
            padding: 0 20px;
            z-index: 2;
            pointer-events: none; /* allow clicks only on buttons */
        }

        .banner-cta .cta {
            position: absolute;
            bottom: -17px; /* align with banner-cta bottom */
            pointer-events: auto;
        }

        .banner-cta .cta-left {
            left: 24%; /* center of left half */
            transform: translateX(-50%);
        }

        .banner-cta .cta-right {
            left: 76%; /* center of right half */
            transform: translateX(-50%);
        }

        .banner-cta .cta .button {
            display: inline-block;
        }

        /* Mobile-only half overlays (hidden on desktop) */
        .half-overlay {
            display: none;
        }


        .content {
    background-color: #e8e8e8;
    padding: 60px 40px;
    text-align: center;
    flex: 1;
}

        .button-group {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-bottom: 40px;
        }

        .button {
            background-color: #ff7b2c;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }

        .button:hover {
            background-color: #e56a1f;
        }

        .page-title {
            color: #2a2a2a;
            font-size: 36px;
            font-weight: 300;
            margin-top: 20px;
        }

        .footer {
    background-color: #5a5a5a;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

        .footer-text {
            color: white;
            font-size: 16px;
            margin-right: 20px;
        }

        .social-icons {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .social-icon {
            color: white;
            font-size: 24px;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .social-icon:hover {
            opacity: 0.7;
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .header {
                padding: 15px 20px;
            }

            .logo-main {
                font-size: 24px;
            }

            .logo-sub {
                font-size: 8px;
            }

            .hero {
                padding: 0;
            }

            /* Mobile: stack CTA buttons and place near bottom of banner */
            .banner-cta {
                top: auto;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
            }

            .banner-cta .button-group {
                flex-direction: column;
                gap: 12px;
                width: 100%;
                max-width: 320px;
                margin: 0 auto;
            }

            /* Mobile: stack separate CTAs centered */
            .banner-cta .cta {
                position: static;
                transform: none;
                margin-bottom: 12px;
                display: flex;
                justify-content: center;
            }

            .banner-cta .cta-left,
            .banner-cta .cta-right {
                left: auto;
                right: auto;
            }

            .content {
                padding: 40px 20px;
            }

            /* Hide desktop CTAs on mobile */
            .banner-cta {
                display: none;
            }

            /* Show half overlays: place a centered CTA at bottom of each half */
            .half-overlay {
                display: block;
                position: absolute;
                left: 0;
                width: 100%;
                pointer-events: auto;
            }

            .half-overlay.top {
                top: 0;
                height: 50%;
            }

            .half-overlay.bottom {
                bottom: 0;
                height: 50%;
            }

            .half-overlay .cta {
                position: absolute;
                left: 50%;
                bottom: 12px;
                transform: translateX(-50%);
                width: calc(100% - 60px);
                max-width: 252px; /* limit width for better look */
                display: flex;
                justify-content: center;
            }

            /* Smaller pill button for mobile half overlays */
            .half-overlay .button {
                width: 100%;
                max-width: 320px;
                padding: 10px 18px;
                font-size: 14px;
                border-radius: 8px;
                text-align: center;
                box-shadow: 0 2px 6px rgba(0,0,0,0.12);
            }

            .button-group {
                flex-direction: column;
                gap: 10px;
                width: 100%;
                max-width: 300px;
                margin: 0 auto 30px;
            }

            .button {
                width: 100%;
                padding: 12px 20px;
                font-size: 14px;
            }

            .page-title {
                font-size: 28px;
            }

            .footer {
                flex-direction: column;
                padding: 20px;
                gap: 15px;
            }

            .footer-text {
                margin-right: 0;
                margin-bottom: 5px;
            }

            .social-icons {
                gap: 25px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }

            .page-title {
                font-size: 24px;
            }

            .button {
                font-size: 13px;
                padding: 10px 15px;
            }

            .social-icons {
                gap: 20px;
            }

            .social-icon svg {
                width: 20px;
                height: 20px;
            }
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .logo-main {
            font-size: 32px;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .logo-sub {
            font-size: 10px;
            letter-spacing: 3px;
            margin-top: -5px;
        }
