/* Custom Brand Colors (Easily customizable) */
:root {
    --light-green:#E9EEE9;
    --light-grey: #E4E4E4;
    --dark-grey: #282728;
    --red:#DF564E;
    --blue:#2DA6B8;
    --green:#C8D32C;
    --peach:#f7d2b2;
    --sage:#b0d6c1;
}

        body {
            font-family: 'Figtree', 'Arial', sans-serif;
            color: var(--dark-grey);
            overflow-x: hidden;
            background-color: var(--light-green);
        }

        a{
            color: var(--red);
        }

        #landing-page{
            overflow: hidden;
        }

        .btn{
            border-radius: 999px;
        }

        /* Utility */
        .hidden-section {
            display: none;
            animation: fadeIn 0.5s ease-in-out;
        }


        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }


        .bg-brand-red {
            background-color: var(--red);
            color: white;
        }

        .bg-brand-blue{
            background-color: var(--blue);
            color: white;            
        }
       
        .text-brand-red {
            color: var(--red); /*D8292F*/
        }


        .btn-brand {
            background-color: var(--red);;
            color: white;
            border: none;
            padding: 12px 24px;
            font-weight: bold;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }


        .btn-brand:hover {
            background-color: #a8191e;
            color: white;
            transform: translateY(-2px);
        }


        /* Hero Section Specifics */
        #hero-section {
            position: relative;
            background-color: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }


        .logo-top-right {
            position: absolute;
            top: 30px;
            right: 30px;
            background: rgba(255,255,255,0.95);
            padding: 15px 30px;
            border-radius: 8px;
            z-index: 10;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }


        .logo-bottom-left {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(255,255,255,0.9);
            padding: 10px 20px;
            border-radius: 4px;
            z-index: 10;
        }


        .hero-content {
            max-width: 900px;
            padding: 20px;
            z-index: 5;
        }


        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }


        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 3rem;
        }


        .selection-card {
            background: rgba(255, 255, 255, 0.95);
            color: color: var(--dark-grey);;
            border-radius: 20px;
            padding: 2rem;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            border: 2px solid var(--light-grey);
        }


        .selection-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            border-color: var(--red);
        }


        .card-icon {
            font-size: 2.5rem;
            color: var(--red);
            margin-bottom: 1rem;
        }

        .card{
            border: 2px solid var(--light-grey);
            border-radius: 10px;
        }


        /* Sub-page Specifics */
        .subpage-hero {
            padding: 80px 0;
            background-color: #f8f9fa;
            border-bottom: 4px solid var(--red);
        }


        .video-placeholder {
            background-color: #eee;
            width: 100%;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            margin-bottom: 1rem;
            color: #666;
            font-weight: bold;
        }


        .faq-item {
            margin-bottom: 1.5rem;
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            border-left: 4px solid var(--red);
        }


        .step-circle {
            width: 40px;
            height: 40px;
            background-color: var(--red);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 15px;
            flex-shrink: 0;
        }


        .nav-back {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1000;
        }

        .badge{
            border-radius: 50px;
        }

        .brand-logo{
            height: 180px;
            width:auto;
        }

        .hero-circle{
            background-color: #ffffff; 
            width:5000px; 
            height:5000px; 
            position: absolute; 
            border-radius: 2500px; 
            bottom:0px; 
            z-index:-1;
        }

        .circle-1{
            position: absolute;
            width:326px;
            height:326px;
            border-radius: 163px;
            border:solid 20px var(--red);
            top:35%;
            left:-200px;
        }

        .circle-2{
            position: absolute;
            width:194px;
            height:194px;
            border-radius: 97px;
            background-color: var(--green);
            right:-90px;
            top:22%;
        }

        .circle-3{
            position: absolute;
            width:326px;
            height:326px;
            border-radius: 163px;
            background-color: var(--blue);
            bottom:8%;
            right:-225px;
        }


@media screen and (max-width: 1024px){

.circle-1, .circle-2, .circle-3{
    display: none;
}

.brand-logo{
    height: 130px;
    width:auto;
}


.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}


.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
}

}