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

:root {
    --light-mint: #bad6f5;
    --light-sage: #a2ebe5;
    --pastel-green: #125235dc;
    --soft-cream: #d7f3f2;
    --natural-green: #144d68;
    --shadow-sm: 0 2px 8px rgba(29, 77, 51, 0.08);
    --shadow-md: 0 4px 20px rgba(29, 77, 51, 0.12);
    --shadow-lg: 0 10px 40px rgba(29, 77, 51, 0.16);
    --shadow-xl: 0 20px 60px rgba(29, 77, 51, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--natural-green);
    background: linear-gradient(180deg, var(--light-mint) 0%, var(--soft-cream) 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(201, 226, 218, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(223, 244, 233, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

h1 { 
    font-size: 2rem;
    background: linear-gradient(135deg, var(--natural-green) 0%, var(--pastel-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p {
    margin-bottom: 0.8rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(46, 125, 89, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(46, 125, 89, 0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.6rem;
    background: linear-gradient(135deg, var(--pastel-green) 0%, var(--natural-green) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

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

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
    animation: buttonPulse 1.5s infinite;
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--pastel-green);
    color: var(--pastel-green);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--pastel-green) 0%, var(--natural-green) 100%);
    color: white;
    border-color: transparent;
}

header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(201, 226, 218, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pastel-green) 0%, var(--natural-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 1.5rem;
    gap: 7px;
    font-weight: 700;
    color: var(--primary-color);
}
.logo>img{
    width: 50px;
  border-radius: 10px;

}
.logo:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--pastel-green) 0%, var(--natural-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 3s ease-in-out infinite;
}

nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--natural-green);
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pastel-green), var(--natural-green));
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--pastel-green);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--natural-green);
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    color: var(--pastel-green);
    transform: scale(1.1);
}

.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--soft-cream) 0%, var(--light-mint) 50%, var(--light-sage) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46, 125, 89, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 226, 218, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: slideInLeft 0.8s ease-out;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--pastel-green);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    animation: slideInRight 0.8s ease-out;
    padding: 20px;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--pastel-green), var(--natural-green));
    clip-path: polygon(
        0% 15%, 
        10% 0%, 
        25% 5%, 
        40% 0%, 
        55% 8%, 
        70% 2%, 
        85% 10%, 
        100% 5%, 
        100% 85%, 
        90% 100%, 
        75% 95%, 
        60% 100%, 
        45% 92%, 
        30% 98%, 
        15% 90%, 
        0% 95%
    );
    z-index: -1;
    opacity: 0.25;
    animation: blobAnimation 8s ease-in-out infinite;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--light-sage) 0%, transparent 70%);
    clip-path: polygon(
        50% 0%, 
        80% 20%, 
        100% 50%, 
        80% 80%, 
        50% 100%, 
        20% 80%, 
        0% 50%, 
        20% 20%
    );
    z-index: -2;
    opacity: 0.4;
    animation: rotate 20s linear infinite;
}

.hero-image img {
    clip-path: polygon(
        0% 15%, 
        10% 0%, 
        25% 5%, 
        40% 0%, 
        55% 8%, 
        70% 2%, 
        85% 10%, 
        100% 5%, 
        100% 85%, 
        90% 100%, 
        75% 95%, 
        60% 100%, 
        45% 92%, 
        30% 98%, 
        15% 90%, 
        0% 95%
    );
    box-shadow: var(--shadow-xl);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.05) contrast(1.02);
}

.hero-image:hover img {
    transform: scale(1.03) translateY(-8px) rotate(0.5deg);
    box-shadow: 0 30px 80px rgba(29, 77, 51, 0.3);
    clip-path: polygon(
        0% 12%, 
        8% 0%, 
        23% 4%, 
        38% 0%, 
        53% 7%, 
        68% 1%, 
        83% 9%, 
        100% 4%, 
        100% 88%, 
        92% 100%, 
        77% 96%, 
        62% 100%, 
        47% 93%, 
        32% 99%, 
        17% 91%, 
        0% 97%
    );
}

@keyframes blobAnimation {
    0%, 100% {
        clip-path: polygon(
            0% 15%, 
            10% 0%, 
            25% 5%, 
            40% 0%, 
            55% 8%, 
            70% 2%, 
            85% 10%, 
            100% 5%, 
            100% 85%, 
            90% 100%, 
            75% 95%, 
            60% 100%, 
            45% 92%, 
            30% 98%, 
            15% 90%, 
            0% 95%
        );
    }
    50% {
        clip-path: polygon(
            0% 18%, 
            12% 2%, 
            27% 7%, 
            42% 2%, 
            57% 10%, 
            72% 4%, 
            87% 12%, 
            100% 7%, 
            100% 82%, 
            88% 98%, 
            73% 93%, 
            58% 98%, 
            43% 90%, 
            28% 96%, 
            13% 88%, 
            0% 93%
        );
    }
}

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

.section {
    padding: 4rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    color: var(--natural-green);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--pastel-green), var(--natural-green));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--pastel-green);
    font-size: 1rem;
    line-height: 1.7;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 226, 218, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(46, 125, 89, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--pastel-green);
}

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

.card-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--pastel-green), var(--natural-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
}

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

.card h3 {
    margin-bottom: 0.8rem;
    color: var(--natural-green);
    transition: color 0.3s ease;
}

.card:hover h3 {
    color: var(--pastel-green);
}

.card p {
    font-size: 0.95rem;
    color: var(--pastel-green);
    line-height: 1.6;
}

.features-section {
    background: linear-gradient(180deg, var(--soft-cream) 0%, rgba(223, 244, 233, 0.5) 100%);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
    border-color: var(--light-sage);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--natural-green), var(--pastel-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
    color: var(--natural-green);
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--pastel-green);
    line-height: 1.6;
}

.about-section {
    background: linear-gradient(180deg, white 0%, var(--light-mint) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    right: 20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--light-sage), var(--soft-cream));
    border-radius: 12px;
    z-index: -1;
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-sage) 0%, var(--soft-cream) 100%);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 125, 89, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--pastel-green);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pastel-green), var(--natural-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--natural-green);
    font-weight: 500;
}

.cta-section {
    background: linear-gradient(135deg, var(--pastel-green) 0%, var(--natural-green) 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

.cta-section h2,
.cta-section p {
    color: white;
}

.cta-section h2 {
    background: none;
    -webkit-text-fill-color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-section .btn {
    background: white;
    color: var(--pastel-green);
    margin-top: 1.5rem;
    font-weight: 600;
}

.cta-section .btn:hover {
    background: var(--light-mint);
    transform: translateY(-3px) scale(1.05);
}

.contact-section {
    background: linear-gradient(180deg, var(--light-sage) 0%, var(--light-mint) 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-info:hover {
    box-shadow: var(--shadow-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--soft-cream);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--light-sage);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--pastel-green), var(--natural-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.2rem;
}

.contact-item-content h4 {
    margin-bottom: 0.4rem;
    font-size: 1rem;
    color: var(--natural-green);
}

.contact-item-content p {
    font-size: 0.95rem;
    color: var(--pastel-green);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--natural-green);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--light-sage);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pastel-green);
    box-shadow: 0 0 0 3px rgba(46, 125, 89, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.3rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--natural-green);
}

.checkbox-group label a {
    color: var(--pastel-green);
    text-decoration: underline;
    font-weight: 500;
}

.checkbox-group label a:hover {
    color: var(--natural-green);
}

.map-container {
    margin-top: 2.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

footer {
    background: linear-gradient(135deg, var(--natural-green) 0%, #0f3020 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

footer > * {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--light-mint);
}

.footer-section p {
    line-height: 1.7;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    opacity: 0.9;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--light-mint);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    text-align: center;
    opacity: 0.85;
}

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

.footer-bottom-links a {
    font-size: 0.85rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--light-mint);
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--pastel-green);
}

.privacy-popup.show {
    transform: translateY(0);
}

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

.privacy-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.privacy-content a {
    color: var(--pastel-green);
    text-decoration: underline;
    font-weight: 500;
}

.privacy-content a:hover {
    color: var(--natural-green);
}

.privacy-buttons {
    display: flex;
    gap: 1rem;
}

.privacy-buttons .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.page-header {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--soft-cream) 0%, var(--light-sage) 50%, var(--light-mint) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 125, 89, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--pastel-green);
    position: relative;
}

.page-content {
    padding: 4rem 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.6s ease-out;
}

.content-wrapper h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--natural-green);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-sage);
}

.content-wrapper h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--pastel-green);
}

.content-wrapper ul {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.success-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-mint) 0%, var(--soft-cream) 100%);
}

.success-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    max-width: 550px;
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-icon {
    font-size: 5rem;
    background: linear-gradient(135deg, var(--pastel-green), var(--natural-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

.success-content h1 {
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.success-content p {
    margin-bottom: 2rem;
    color: var(--pastel-green);
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.faq-section {
    background: linear-gradient(180deg, var(--light-mint) 0%, var(--soft-cream) 100%);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-bottom: 1.2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(201, 226, 218, 0.3);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out backwards;
}

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

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--pastel-green);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    user-select: none;
}

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

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(18, 82, 53, 0.05) 0%, rgba(20, 77, 104, 0.05) 100%);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--natural-green);
    font-weight: 600;
    flex: 1;
    line-height: 1.4;
}

.faq-question i {
    font-size: 1rem;
    color: var(--pastel-green);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 2rem;
}

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

.faq-answer p {
    margin: 0;
    color: var(--pastel-green);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 855px){
    .nav-menu{
        gap: 0.7rem;
    }
    .header-container{
        gap: 1rem;
    }
} 
@media (max-width: 768px) {
    .stats-grid{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .stat-item{
        width: 300px;
    }
    .about-image{
        display: flex;
        justify-content: center;
    }
    body {
        font-size: 14px;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }

    .header-container {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        flex-basis: 100%;
        order: 3;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        display: none;
        padding-top: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .hero-image {
        order: -1;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .privacy-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }

    .privacy-buttons {
        width: 100%;
    }

    .privacy-buttons .btn {
        flex: 1;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3rem 0;
    }

    .cards-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo span{
        display: none;
    }
    .container {
        padding: 0 0.8rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-wrapper {
        padding: 1.5rem;
    }

    .success-content {
        padding: 2.5rem 1.5rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }

    .logo {
        font-size: 1.1rem;
    }

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
