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

:root {
    --light-mint: #FEFAF6;
    --light-sage: #F9F4E9;
    --pastel-green: #C9674E;
    --soft-cream: #FFF7E8;
    --natural-green: #8A3F2D;
    --sunset-peach: #F5C6AA;
    --warm-terracotta: #B4573F;
    --powder-rose: #F8E7DE;
    --deep-chocolate: #4B2A1F;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--light-mint);
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    animation: fadeIn 0.6s ease-in;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    transition: all 0.3s ease;
}

h1:hover, h2:hover {
    transform: scale(1.02);
    color: var(--pastel-green);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 0.8rem; }

a {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a:hover {
    transform: translateY(-1px);
}

p a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pastel-green);
    transition: width 0.3s ease;
}

p a:hover::after {
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

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

header {
    background: linear-gradient(135deg, var(--soft-cream) 0%, var(--light-sage) 100%);
    padding: 1rem 0;
    border-bottom: 3px solid var(--pastel-green);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transform-origin: top;
    transition: transform 0.3s ease, opacity 0.3s ease;
    animation: fadeInDown 0.8s ease-out;
}

header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--natural-green);
    font-family: 'Comfortaa', cursive;
    animation: fadeInLeft 0.8s ease-out;
    transition: transform 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: 70px;
    border-radius: 50%;

}
.logo:hover {
    animation: swing 0.6s ease;
    transform-origin: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--natural-green);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pastel-green);
    transition: width 0.3s ease;
}

nav a:hover::before {
    width: 100%;
}

nav a:hover,
nav a.active {
    background: var(--pastel-green);
    color: white;
}

.menu-toggle {
    display: none;
    background: var(--pastel-green);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(201, 103, 78, 0.3);
}

.menu-toggle:active {
    transform: scale(0.95);
}

.hero {
    background: radial-gradient(circle at top right, rgba(255,255,255,0.45), transparent),
                radial-gradient(circle at bottom left, rgba(245,198,170,0.35), transparent),
                linear-gradient(120deg, var(--powder-rose), var(--soft-cream));
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    filter: blur(20px);
    z-index: 0;
}

.hero::before {
    top: -120px;
    right: -60px;
}

.hero::after {
    bottom: -150px;
    left: -40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--warm-terracotta);
    background: rgba(255,255,255,0.8);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--natural-green);
    margin-bottom: 1rem;
}

.hero h1 span {
    display: block;
    color: var(--warm-terracotta);
}

.hero-text {
    font-size: 1.1rem;
    color: #4a3b34;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.hero-list {
    list-style: none;
    margin-bottom: 1.7rem;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--deep-chocolate);
}

.hero-list i {
    color: var(--pastel-green);
    background: rgba(201, 103, 78, 0.1);
    border-radius: 50%;
    padding: 0.3rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.8rem;
}

.btn-link {
    font-weight: 600;
    color: var(--natural-green);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.btn-link:hover::after {
    transform: scaleX(1);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.stat-card {
    background: rgba(255,255,255,0.9);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    text-align: left;
}

.stat-card strong {
    display: block;
    font-size: 1.8rem;
    color: var(--natural-green);
}

.stat-card span {
    font-size: 0.9rem;
    color: #6c5a52;
}

.hero-media {
    display: grid;
    gap: 1.5rem;
}

.hero-media-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hero-media-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.9);
    padding: 0.8rem 1rem;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hero-badge i {
    color: var(--pastel-green);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.hero-badge p {
    margin-bottom: 0.1rem;
    font-weight: 700;
    color: var(--natural-green);
}

.hero-badge span {
    font-size: 0.85rem;
    color: #6c5a52;
}

.hero-media-card {
    background: white;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.hero-media-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,103,78,0.08), transparent);
    pointer-events: none;
}

.hero-media-title {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--pastel-green);
    margin-bottom: 0.3rem;
}

.hero-media-card h3 {
    color: var(--natural-green);
    margin-bottom: 0.5rem;
}

.hero-media-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a3b34;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-avatar-stack {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--natural-green);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.avatar.more {
    background: var(--pastel-green);
    color: white;
}

.hero-media-note {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--warm-terracotta);
}

.btn {
    display: inline-block;
    background: var(--pastel-green);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--pastel-green);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    background: var(--natural-green);
    border-color: var(--natural-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--pastel-green);
    border: 2px solid var(--pastel-green);
}

.btn-secondary:hover {
    background: var(--pastel-green);
    color: white;
}

section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--natural-green);
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
    color: #555;
    font-size: 1rem;
}

.gallery-section {
    background: var(--soft-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.gallery-item figcaption {
    padding: 1rem;
    font-size: 0.9rem;
    color: #555;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

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

.card {
    background: var(--light-sage);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 1;
    transform: none;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--pastel-green);
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.card:hover .card-icon {
    animation: bounce 0.6s ease;
}

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

.card p {
    color: #555;
    font-size: 0.9rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: var(--soft-cream);
    border-radius: 10px;
    opacity: 1;
    transform: none;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--natural-green);
    margin-bottom: 0.8rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon {
    animation: pulse 0.6s ease;
}

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

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

.cta-section h2 {
    color: white;
}

.cta-section .btn {
    background: white;
    color: var(--natural-green);
    border-color: white;
}

.cta-section .btn:hover {
    background: var(--soft-cream);
    border-color: var(--soft-cream);
}

.contact-section {
    background: var(--light-sage);
    padding: 3rem 0;
    border-radius: 15px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    padding: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 1;
    transform: none;
}

.contact-item i {
    color: var(--pastel-green);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    animation: bounce 0.6s ease;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    opacity: 1;
    transform: none;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--natural-green);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--pastel-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pastel-green);
    transform: translateY(-2px);
    box-shadow: 0 0 0 3px rgba(201, 103, 78, 0.1), 0 4px 10px rgba(0,0,0,0.05);
}

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

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

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

.checkbox-group label {
    font-size: 0.85rem;
    color: #555;
    font-weight: 400;
}

.map-container {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 1;
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

footer {
    background: var(--natural-green);
    color: white;
    padding: 2rem 0 1rem;
    margin-top: 3rem;
    font-size: 0.85rem;
    animation: fadeIn 1s ease-out;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--soft-cream);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ddd;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.8rem;
}

.privacy-links {
    margin-top: 0.8rem;
}

.privacy-links a {
    margin: 0 0.5rem;
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--natural-green);
    color: white;
    padding: 1.2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
    animation: slideUp 0.5s ease;
}

.privacy-popup.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

@keyframes fadeInRight {
    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 bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes swing {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-5deg);
    }
}

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(201, 103, 78, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(201, 103, 78, 0.8), 0 0 30px rgba(201, 103, 78, 0.6);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(201, 103, 78, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(201, 103, 78, 0.6), 0 0 30px rgba(201, 103, 78, 0.4);
    }
}

@keyframes borderDance {
    0%, 100% {
        border-radius: 12px 12px 12px 12px;
    }
    25% {
        border-radius: 12px 20px 12px 20px;
    }
    50% {
        border-radius: 20px 12px 20px 12px;
    }
    75% {
        border-radius: 12px 20px 12px 20px;
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(2deg);
    }
    75% {
        transform: rotate(-2deg);
    }
}

.privacy-popup .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.privacy-popup p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
}

.privacy-popup a {
    color: var(--soft-cream);
    text-decoration: underline;
}

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

.privacy-popup button {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.privacy-popup button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.privacy-popup button:hover::after {
    width: 200px;
    height: 200px;
}

.accept-btn {
    background: var(--pastel-green);
    color: white;
}

.accept-btn:hover {
    background: var(--soft-cream);
    color: var(--natural-green);
}

.decline-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.decline-btn:hover {
    background: white;
    color: var(--natural-green);
}

.success-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--pastel-green);
    margin-bottom: 1rem;
    animation: scaleIn 0.8s ease-out, pulse 2s ease-in-out 1s infinite;
}

.policy-content {
    background: var(--light-sage);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    opacity: 1;
}

.policy-content h2 {
    margin-top: 2rem;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}
@media (max-width: 900px){
    nav ul{
        gap: 0px;
    }
    .logo span{
        font-size: 20.7px;
    }
}
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        width: 100%;
        order: 3;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    nav.active ul {
        max-height: 500px;
        margin-top: 1rem;
    }
    
    nav li {
        width: 100%;
    }
    
    nav a {
        display: block;
        padding: 0.8rem;
    }
    
    .hero {
        padding: 3.2rem 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-actions .btn,
    .hero-actions .btn-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.1rem; }
    
    .cards {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .privacy-popup .container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .privacy-popup-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .privacy-popup button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo span{
        display: none;
    }
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 2.5rem 0;
    }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .hero-list li {
        align-items: flex-start;
    }
    
    .hero-media-card,
    .stat-card {
        text-align: left;
    }
    
    .card {
        padding: 1.2rem;
    }
    
    .btn {
        padding: 0.6rem 1.4rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .hero h1 {
        font-size: 1.3rem;
    }
    
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }
    h3 { font-size: 1rem; }
}

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

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.hover-grow {
    transition: transform 0.3s ease;
}

.hover-grow:hover {
    transform: scale(1.05);
}

.hover-rotate {
    transition: transform 0.3s ease;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--pastel-green) 0%, var(--natural-green) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

.animated-border {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--pastel-green), var(--natural-green)) border-box;
    animation: borderDance 4s ease infinite;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

.glow-effect {
    animation: glow 2s ease-in-out infinite;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(201, 103, 78, 0.3);
    border-radius: 50%;
    border-top-color: var(--pastel-green);
    animation: rotate 1s linear infinite;
}