:root {
    /* Main colors from the LERI app */
    --primary-color: #4CC9FE;     /* LERI blue */
    --primary-dark: #3AB8ED;      /* Darker blue for hover states */
    --secondary-color: #F5F8FA;   /* Light blue-grey background */
    --text-color: #2C3E50;        /* Dark blue-grey for main text */
    --light-text: #7F8C8D;        /* Grey for secondary text */
    --white: #FFFFFF;             /* Pure white */
    --border-color: #E1E8ED;      /* Light grey for borders */
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhance the hero section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 100%),
                radial-gradient(circle at top right, rgba(76, 201, 254, 0.1), transparent 400px);
    position: relative;
    overflow: hidden;
    padding: 1rem 5%;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
}

/* Remove checker pattern and update hero background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(76, 201, 254, 0.15), transparent 60%);
    pointer-events: none;
}

/* Update nav styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin: 1rem 0;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

/* Update social links animation */
.social-link {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(76, 201, 254, 0.1);
    animation: socialFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

/* Add staggered animation delay for each social icon */
.social-link:nth-child(1) {
    animation-delay: 0.6s;
}

.social-link:nth-child(2) {
    animation-delay: 0.8s;
}

/* Add the animation keyframes */
@keyframes socialFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.social-link:hover {
    transform: translateY(-2px);
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(76, 201, 254, 0.2);
}

/* Enhance logo and button visibility */
.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8); /* Add subtle shadow for better visibility */
}

nav .get-started {
    background: var(--primary-color);
    box-shadow: 0 4px 15px rgba(76, 201, 254, 0.2); /* Add subtle shadow for depth */
}

nav .get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 201, 254, 0.3);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    max-width: 800px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.phone-mockup {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Buttons */
.get-started, .submit-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.get-started::before, .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
    z-index: -1;
}

.get-started:hover::before, .submit-btn:hover::before {
    left: 100%;
}

/* Features Section */
.features {
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

/* Add subtle glow to feature cards */
.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(76, 201, 254, 0.12), transparent 60%),
                radial-gradient(circle at 70% 30%, rgba(76, 201, 254, 0.08), transparent 50%);
    opacity: 0.05;
    pointer-events: none;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05),
                0 0 50px rgba(76, 201, 254, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 201, 254, 0.1), rgba(76, 201, 254, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(76, 201, 254, 0.2),
                0 0 60px rgba(76, 201, 254, 0.15);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.feature-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover h3::after {
    opacity: 1;
}

.feature-item p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.feature-item:hover p {
    color: var(--text-color);
}

/* Add floating animation for subtle movement */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.feature-item {
    animation: float 4s ease-in-out infinite;
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }
.feature-item:nth-child(4) { animation-delay: 0.8s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-item {
        animation: none; /* Disable floating animation on mobile */
    }
    
    .feature-item:hover {
        transform: translateY(-10px); /* Smaller hover lift on mobile */
    }
}

/* Our Story Section */
.our-story {
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary-color) 50%, var(--white) 100%),
                radial-gradient(circle at 30% 50%, rgba(76, 201, 254, 0.1), transparent 70%);
    position: relative;
}

.story-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.story-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.story-text p:first-of-type {
    font-size: 1.1rem;
    color: black;
    font-weight: normal;
}

.story-tagline {
    font-size: 1.4rem !important;
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    text-align: center;
    margin-top: 2rem !important;
}

/* Contact Section */
.contact {
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--secondary-color), var(--white));
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 0;
    padding-bottom: 4rem;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(76, 201, 254, 0.12) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                0 0 80px rgba(76, 201, 254, 0.08);
}

.contact h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact p {
    color: var(--light-text);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(76, 201, 254, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

/* Make placeholder text consistent across all form elements */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    opacity: 0.8;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(76, 201, 254, 0.4);
    box-shadow: 0 4px 15px rgba(76, 201, 254, 0.1);
}

/* Add rotating animation for background effect */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Add scroll reveal animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item, .story-content, .contact-content {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }
.feature-item:nth-child(4) { animation-delay: 0.8s; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-bottom: 2rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .feature-grid {
        gap: 2rem;
    }

    .features,
    .our-story,
    .contact {
        padding: 3rem 5%;
    }

    .story-content {
        padding: 2rem;
    }
    
    .story-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .story-tagline {
        font-size: 1.2rem !important;
    }

    .hero-image {
        padding: 2rem 1rem;
    }
    
    .phone-mockup {
        max-height: 400px;
    }

    .nav-right {
        gap: 1rem;
    }
    
    .social-link {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--white);
    margin: 15% auto;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 50px rgba(76, 201, 254, 0.1);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
    color: var(--light-text);
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--light-text);
    margin-bottom: 2rem;
}

.modal-content input[type="email"] {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modal-content input[type="email"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(76, 201, 254, 0.1);
    outline: none;
}

.modal-success {
    text-align: center;
}

.modal-success h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-success p {
    margin-bottom: 2rem;
}

/* Add success animation */
@keyframes successIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-success.show {
    display: block;
    animation: successIn 0.3s ease-out;
}

/* Clear any floating elements */
section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Hide any stray text at the bottom */
body::after,
body::before {
    display: none;
    content: none;
}

/* Ensure proper closing of the page */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Add initial load animations */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Update scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Update stagger animations */
.stagger-children > * {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.stagger-children.active > * {
    opacity: 1;
    transform: translateY(0);
}

/* Adjust transition delays */
.stagger-children.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.4s; }

/* Apply initial load animations */
.hero-text {
    animation: fadeInSlideUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-image {
    animation: scaleIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.logo {
    animation: fadeInSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s backwards;
}

nav .get-started {
    animation: fadeInSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s backwards;
}

.modal-content select {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    background: var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.modal-content select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(76, 201, 254, 0.1);
    outline: none;
}

.modal-content select:hover {
    border-color: var(--primary-color);
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(76, 201, 254, 0.12), transparent 60%);
    pointer-events: none;
}

.works-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.works-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
}

.works-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.process-flow {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(76, 201, 254, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(76, 201, 254, 0.2);  /* Subtle blue border */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-flow::before,
.process-flow::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);  /* Solid blue color */
    opacity: 0.3;
}

.process-flow::before {
    top: 0;
}

.process-flow::after {
    bottom: 0;
}

.highlight-word {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.3s;
}

.process-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.5s;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.05);  /* Subtle text enhancement */
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.highlight:hover {
    transform: translateY(-2px);
    color: var(--primary-dark);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .works-content h2 {
        font-size: 2rem;
    }
    
    .highlight-word {
        font-size: 2rem;
    }
    
    .process-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .process-flow {
        padding: 2rem;
    }
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }
.step:nth-child(5) { animation-delay: 0.5s; }

.bullet {
    background: var(--primary-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(76, 201, 254, 0.2);
}

.step p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 0.2rem;
}

@media (max-width: 768px) {
    .step {
        gap: 1rem;
    }
    
    .bullet {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .step p {
        font-size: 1.1rem;
    }
}

.intro-text {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.outro-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(76, 201, 254, 0.2);
    text-align: center;
    color: var(--text-color);
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.success-message {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(76, 201, 254, 0.1);
    border: 2px solid rgba(76, 201, 254, 0.2);
}

.success-message h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.success-message p {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.6;
}

.modal-content input[type="text"] {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modal-content input[type="text"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(76, 201, 254, 0.1);
    outline: none;
}

#otherSourceInput {
    margin-top: -0.5rem;
    animation: fadeIn 0.3s ease;
}

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

.highlight-note {
    color: var(--primary-color);
    font-size: 0.9em;
    font-weight: 500;
    opacity: 0.9;
    font-style: italic;
}

/* Add this to match the styling of other dropdowns */
#promoterSelect {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    background: var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

#promoterSelect:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(76, 201, 254, 0.1);
    outline: none;
}

#promoterSelect:hover {
    border-color: var(--primary-color);
}

.referral-note {
    background: rgba(76, 201, 254, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.referral-note span {
    color: var(--primary-color);
    font-weight: 600;
} 

/* --- Hero Subheadline --- */
.hero-subheadline {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0.5em 0 0.5em 0;
  color: #222;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.hero-subheadline .students-icon {
  font-size: 1.2em;
}
.hero-subheadline .highlight {
  color: #4CC9FE;
  font-weight: bold;
}

/* --- Coming This Fall Badge --- */
.coming-fall-badge {
  position: absolute;
  top: 2.5em;
  right: 2.5em;
  background: linear-gradient(90deg, #ffb347 0%, #ffcc80 100%);
  color: #7a4f01;
  font-weight: 700;
  padding: 0.5em 1.2em;
  border-radius: 2em;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  z-index: 10;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 0.5em;
} 

.primary-blue {
  color: #4CC9FE;
} 

/* Navigation Link Styles */
.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(76, 201, 254, 0.1);
    white-space: nowrap;
}

.nav-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 201, 254, 0.2);
}

/* FAQ Section Styles */
.faq {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(76, 201, 254, 0.08), transparent 60%);
    pointer-events: none;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.faq-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    border: 1px solid rgba(76, 201, 254, 0.2);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(76, 201, 254, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(76, 201, 254, 0.05);
}

.faq-question:hover {
    background: rgba(76, 201, 254, 0.1);
}

.faq-question h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(76, 201, 254, 0.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(76, 201, 254, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 2rem 1.5rem 2rem;
    background: rgba(76, 201, 254, 0.05);
}

.faq-answer p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

.faq-answer ul {
    margin: 1rem 0 0 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Mobile Responsiveness for FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 4rem 5%;
    }
    
    .faq-content h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
        max-height: 500px;
    }
    
    .faq-answer p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .faq-answer ul {
        padding-left: 1.25rem;
    }
    
    .faq-answer li {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    /* Mobile Navigation Styles */
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem 0;
    }
    
    .nav-left {
        width: 100%;
        justify-content: space-between;
        gap: 0.5rem;
    }
    
    .nav-right {
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
        white-space: nowrap;
    }
    
    .social-link {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
    }
    
    .get-started {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .faq {
        padding: 3rem 3%;
    }
    
    .faq-content h2 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    .faq-answer li {
        font-size: 0.9rem;
    }
    
    /* Extra small mobile navigation */
    nav {
        gap: 0.75rem;
    }
    
    .nav-left {
        gap: 0.25rem;
    }
    
    .nav-right {
        gap: 0.75rem;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .nav-link {
        font-size: 0.7rem;
        padding: 0.25rem 0.4rem;
    }
    
    .social-link {
        font-size: 1.1rem;
        width: 32px;
        height: 32px;
    }
    
    .get-started {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }
} 

/* Privacy Policy Page Styles */
.privacy-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 100%);
    border-bottom: 1px solid rgba(76, 201, 254, 0.2);
}

.privacy-content {
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary-color) 100%);
    min-height: 80vh;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 201, 254, 0.2);
}

.privacy-container h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--light-text);
    font-style: italic;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(76, 201, 254, 0.3);
    padding-bottom: 0.5rem;
}

.privacy-section h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem 0;
}

.privacy-section p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-section li {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-info {
    background: rgba(76, 201, 254, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.privacy-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 2rem 5%;
    text-align: center;
    box-shadow: 0 -4px 20px rgba(76, 201, 254, 0.2);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Mobile Responsiveness for Privacy Policy */
@media (max-width: 768px) {
    .privacy-nav {
        padding: 1rem 3%;
    }
    
    .privacy-content {
        padding: 2rem 3%;
    }
    
    .privacy-container {
        padding: 2rem;
    }
    
    .privacy-container h1 {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 1.5rem;
    }
    
    .privacy-container h1 {
        font-size: 1.8rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 0.95rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Main Footer Styles */
.main-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 2rem 5%;
    text-align: center;
    margin-top: 0;
    box-shadow: 0 -4px 20px rgba(76, 201, 254, 0.2);
}

.main-footer .footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.main-footer .footer-links {
    display: flex;
    gap: 2rem;
}

.main-footer .footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-footer .footer-links a:hover {
    color: var(--primary-color);
}

/* Mobile Responsiveness for Main Footer */
@media (max-width: 768px) {
    .main-footer .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .main-footer .footer-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-footer .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}