:root {
    --color-primary: #006400; /* Dark green */
    --color-secondary: #ffffff; /* White */
    --color-accent: #40E0D0; /* Turquoise */
    --color-text: #333333;
    --color-background: #f5f5f5;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

/* Navigation */
.nav-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-secondary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.nav-brand .logo {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo {
    transform: rotate(5deg);
}

.nav-brand h1 {
    color: var(--color-primary);
    margin: 0;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.logo-link:hover h1 {
    color: var(--color-accent);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-accent);
}

/* Main Content */
main {
    margin-top: 80px;
}

.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 100, 0, 0.2));
    transition: transform 0.3s ease;
}

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

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Grid Styles */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.content-card {
    background: var(--color-secondary);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

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

/* Interactive Cards */
.interactive-card {
    position: relative;
    overflow: hidden;
}

.interactive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 224, 208, 0.1), transparent);
    transition: left 0.5s ease;
}

.interactive-card:hover::before {
    left: 100%;
}

.card-action {
    margin-top: 1.5rem;
    text-align: center;
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 100, 0, 0.3);
}

/* Pricing Grid Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.pricing-card {
    background: var(--color-secondary);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card.featured {
    border: 2px solid var(--color-accent);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin: 1rem 0;
    font-weight: bold;
}

.features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.features li {
    margin: 0.8rem 0;
    color: #333;
}

/* Stories Grid Styles */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.story-card {
    background: var(--color-secondary);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.story-card h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.story-title {
    color: var(--color-accent);
    font-style: italic;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-brand h1 {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .hero-section {
        padding: 6rem 1rem 3rem;
        min-height: auto;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-main-image {
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 100, 0, 0.15);
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .section-header .section-icon {
        width: 60px;
        height: 60px;
    }
    
    .pricing-grid,
    .stories-grid,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
    
    .contact-container {
        max-width: 90%;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.2rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* New sections mobile styles */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .methodology-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .methodology-visual {
        order: -1;
    }
    
    .visual-element svg {
        width: 250px;
        height: 250px;
    }
    
    .method-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1.5rem;
    }
    
    /* Team section mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-stats {
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .stat-box .stat-number {
        font-size: 2rem;
    }
    
    .footer-brand {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Mobile Navigation */
    .nav-toggle {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--color-secondary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        padding: 1.5rem 0;
        font-size: 1.3rem;
        border-bottom: 1px solid rgba(0, 100, 0, 0.1);
        width: 85%;
        text-align: center;
        transition: all 0.3s ease;
        border-radius: 8px;
        margin: 0.2rem 0;
    }
    
    .nav-menu a:hover {
        background: rgba(0, 100, 0, 0.05);
        color: var(--color-accent);
        transform: translateX(5px);
    }
    
    /* Thank You Page Mobile */
    .thank-you-hero h1 {
        font-size: 2rem;
    }
    
    .steps-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--color-secondary) 0%, rgba(0, 100, 0, 0.05) 100%);
    color: var(--color-primary);
    padding: 4rem 2rem 4rem;
    margin-top: 80px;
    overflow: hidden;
    min-height: 100vh;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.hero-text-content {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.hero-image-content {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 100, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-main-image:hover {
    transform: scale(1.02);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    animation: float 8s ease-in-out infinite;
}

.hero-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(64, 224, 208, 0.3));
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 25%;
    animation-delay: 4s;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: particle-float 6s linear infinite;
}

.particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 40%; animation-delay: 1s; }
.particle:nth-child(3) { left: 60%; animation-delay: 2s; }
.particle:nth-child(4) { left: 80%; animation-delay: 3s; }
.particle:nth-child(5) { left: 90%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    33% { transform: translateY(-30px) rotate(120deg) scale(1.1); }
    66% { transform: translateY(15px) rotate(240deg) scale(0.9); }
}

@keyframes particle-float {
    0% { transform: translateY(100vh) opacity(0); }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) opacity(0); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-secondary);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 100, 0, 0.3);
    animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 100, 0, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(0, 100, 0, 0.4); }
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--color-primary);
}

.title-line {
    display: block;
}

.title-highlight {
    background: linear-gradient(45deg, var(--color-accent), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(45deg, var(--color-accent), var(--color-primary));
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 300;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 1.2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    position: relative;
}

.stat::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 1px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(64, 224, 208, 0.5);
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(64, 224, 208, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(64, 224, 208, 0); }
    100% { box-shadow: 0 0 0 0 rgba(64, 224, 208, 0); }
}

.btn-icon {
    font-size: 1.2rem;
}

.hero-trust {
    opacity: 0.9;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact Section */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    gap: 2rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(0, 100, 0, 0.02) 100%);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 100, 0, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 100, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

.contact-form {
    width: 100%;
    order: 1;
}

.contact-info {
    width: 100%;
    order: 2;
    text-align: center;
}

.contact-info {
    background: transparent;
    padding: 2rem 0 0 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-top: 2px solid rgba(0, 100, 0, 0.1);
    position: relative;
    overflow: visible;
}

.contact-info h3 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(0, 100, 0, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 100, 0, 0.1);
}

.info-item:hover {
    background: rgba(0, 100, 0, 0.1);
    transform: scale(1.02);
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--color-primary);
}

.info-item h4 {
    color: var(--color-primary);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.info-item p {
    margin: 0;
    color: #666;
    line-height: 1.4;
    font-weight: 400;
    font-size: 0.85rem;
}

.contact-details {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(64, 224, 208, 0.2);
    text-align: center;
}

.contact-details p {
    margin: 0.8rem 0;
    color: #555;
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    background: rgba(64, 224, 208, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(64, 224, 208, 0.1);
}

/* Form Styles */
.contact-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    position: relative;
    overflow: visible;
}

.contact-form h3 {
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(64, 224, 208, 0.15), 0 8px 25px rgba(0, 100, 0, 0.1);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 100, 0, 0.1);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    line-height: 1.6;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0, 100, 0, 0.1);
    position: relative;
    min-height: 50px;
}

.checkbox-label:hover {
    background: rgba(0, 100, 0, 0.05);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 100, 0, 0.1);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-primary);
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    display: inline-block;
}

.checkbox-label:hover .checkmark {
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(64, 224, 208, 0.3);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -1px;
    left: 4px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    animation: checkmark-appear 0.3s ease;
}

@keyframes checkmark-appear {
    0% { opacity: 0; transform: scale(0); }
    100% { opacity: 1; transform: scale(1); }
}

.checkbox-label {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.checkbox-label > span:not(.checkmark) {
    flex: 1;
    margin-top: 2px;
}

.checkbox-label a {
    color: var(--color-accent);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: var(--color-primary);
    text-shadow: 0 0 5px rgba(0, 100, 0, 0.3);
}

/* Form Error Styles */
.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group.error label {
    color: #e74c3c;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Thank You Page Styles */
.thank-you-main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.thank-you-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #004d00 50%, var(--color-accent) 100%);
    color: var(--color-secondary);
    text-align: center;
    padding: 4rem 2rem;
}

.success-icon {
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.thank-you-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

.thank-you-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    background: var(--color-secondary);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.step-time {
    display: inline-block;
    background: rgba(64, 224, 208, 0.1);
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.resource-card {
    background: var(--color-secondary);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.resource-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.resource-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: var(--color-primary);
}

/* Contact Info Section */
.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--color-secondary);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--color-primary);
    margin: 0 0 0.5rem 0;
}

.contact-item p {
    margin: 0 0 0.5rem 0;
    font-weight: 500;
}

.contact-item small {
    color: #666;
    font-style: italic;
}

/* Social Proof Section */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 100, 0, 0.05) 0%, rgba(64, 224, 208, 0.05) 100%);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, rgba(0, 100, 0, 0.02) 0%, rgba(64, 224, 208, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(64, 224, 208, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--color-secondary);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 224, 208, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 100, 0, 0.15);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 100, 0, 0.2));
}

.feature-card h3 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    text-align: left;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #666;
    font-weight: 500;
}

/* Methodology Section */
.methodology-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #004d00 100%);
    color: var(--color-secondary);
    position: relative;
}

.methodology-container {
    display: grid;
    
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
   
}

.methodology-content h2 {
    color: var(--color-secondary);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.methodology-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.method-step:hover {
    transform: translateX(10px);
}

.step-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    margin-bottom: 0.8rem;
    color: var(--color-accent);
}

.methodology-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-element {
    position: relative;
}

.rotating-elements {
    animation: rotate 10s linear infinite;
    transform-origin: 150px 150px;
}

/* FAQ Section */
.faq-section {
    background: var(--color-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 100, 0, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: var(--color-secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 100, 0, 0.05);
}

.faq-question h3 {
    margin: 0;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--color-accent);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(64, 224, 208, 0.02);
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.02) 0%, rgba(0, 100, 0, 0.02) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.team-card {
    background: var(--color-secondary);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 100, 0, 0.05), transparent);
    transition: left 0.6s ease;
}

.team-card:hover::before {
    left: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 100, 0, 0.15);
}

.team-image {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.team-image img.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
    border: 3px solid var(--color-accent);
}

.team-card:hover .team-image img.team-photo {
    transform: scale(1.1);
    border-color: var(--color-primary);
}

.team-image svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.team-card:hover .team-image svg {
    transform: scale(1.1);
}

.team-card h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.team-role {
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.team-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.team-credentials span {
    background: rgba(64, 224, 208, 0.1);
    color: var(--color-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--color-primary) 0%, #004d00 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.stat-box {
    text-align: center;
    color: var(--color-secondary);
}

.stat-box .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Success Alert Styles */
.success-alert-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-alert-container.show {
    opacity: 1;
    visibility: visible;
}

.success-alert-container.hide {
    opacity: 0;
    visibility: hidden;
}

.success-alert {
    background: var(--color-secondary);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.success-alert-container.show .success-alert {
    transform: scale(1);
}

.success-icon {
    margin-bottom: 1.5rem;
    animation: bounce 0.6s ease;
}

.success-alert h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.success-alert p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.success-progress {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.success-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    animation: progress 2s ease-in-out;
}

@keyframes progress {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #004d00 100%);
    color: var(--color-secondary);
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 100, 0, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #005000 0%, var(--color-accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 100, 0, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 100, 0, 0.3);
}

.btn-secondary {
    background-color: var(--color-accent);
    color: var(--color-text);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #30c0b0;
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: var(--color-secondary);
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand .logo {
    width: 40px;
    height: 40px;
   
}

.footer-brand h3 {
    margin: 0;
    font-size: 1.5rem;
}

.footer-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.footer-links a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: var(--color-secondary);
    border: 2px solid var(--color-accent);
    border-radius: 20px;
    padding: 1.5rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-consent {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    text-align: center;
}

.cookie-consent p {
    margin: 0;
    flex: 1;
    min-width: 300px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.cookie-consent a {
    color: var(--color-accent);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-consent a:hover {
    color: var(--color-secondary);
}

.cookie-consent button {
    flex-shrink: 0;
    min-width: 120px;
    padding: 0.8rem 1.5rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .cookie-consent p {
        min-width: auto;
        font-size: 0.9rem;
    }
    
    .cookie-consent button {
        width: 100%;
        max-width: 200px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        margin-top: 1rem;
    }

    .nav-menu a {
        display: block;
        margin: 0.5rem 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

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

    .footer-links {
        margin-bottom: 1rem;
    }

    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }
}