@font-face {
  font-family: 'Montserrat';
  src: url("fonts/Montserrat.ttf");
}

@font-face {
  font-family: 'Wellness';
  src: url("fonts/Wellness.otf");
}

/* Grundlegende Styles */
body {
    margin: 0;
    font-family: 'Montserrat';
    scroll-behavior: smooth;
    background: #fff;
    color: #222;
}

:root {
  --bg: #fff;
  --accent: #a4d59c;
  --accent-600: #5dd74a;
  --muted: #f9f7f5;
  --radius: 16px;
  --space-lg: 48px;
  --ff-sans: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  --transition: 220ms cubic-bezier(.2,.8,.2,1);
  --dark-green: #193154;
  --forest-green: #556d47;
}

/* Skip link (visually hidden, visible on keyboard focus) */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link:focus {
    left: 16px;
    top: 12px;
    width: auto;
    height: auto;
    padding: 8px 12px;
    background: var(--dark-green);
    color: white;
    border-radius: 6px;
    z-index: 10001;
    text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto; }
}


/* Improve base font stack and background */
body {
  font-family: var(--ff-sans);
  background: var(--bg);
}

#bts{
  text-decoration: none;
  color: black;
}

/* Header und Navigation */
.main-header {
    font-family: 'Montserrat';
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    border-radius: 50px;
    margin: 20px;
    position: sticky;
    top: 2vh;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.logo img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.main-nav {
    display: flex;
    gap: 18px;
    align-items: center;
}

/* Nav toggle (hamburger) */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle .hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-green);
    position: relative;
}
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--dark-green);
}
.nav-toggle .hamburger::before { top: -7px; }
.nav-toggle .hamburger::after { top: 7px; }

/* Mobile: hide normal nav and show hamburger */
@media (max-width: 800px) {
    .nav-toggle { display: block; }
    .main-nav {
        position: absolute;
        top: 74px;
        right: 16px;
        background: var(--bg);
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        border-radius: 12px;
        padding: 12px 18px;
        display: none;
        flex-direction: column;
        gap: 8px;
        z-index: 10000;
    }
    .main-nav.open { display: flex; }
}

.main-nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--forest-green);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.cta {
    background: var(--accent);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 40px -10px rgba(164, 213, 156, 0.3);
    transition: all 0.6s ease;
}

.cta:hover {
    background: var(--accent-600);
    transform: translateY(-2px);
    box-shadow: 0 12px 48px -10px rgba(93, 215, 74, 0.4);
}

/* Hero Section */
.hero {
    background: url('./images/stones.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 150px 20px;
    position: relative;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 20px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero * {
    position: relative;
    z-index: 2;
}




#mehr-inhalt h2 {
    font-size: 32px;
    color: var(--dark-green);
    margin: 0 0 30px 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    animation: slideInLeft 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#mehr-inhalt p {
    font-size: 16px;
    line-height: 1.85;
    color: #666;
    margin: 0 0 20px 0;
    text-align: center;
}

/* Button Styling */
.btn-secondary {
    border: 2px solid white;
    padding: 12px 28px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
    z-index: -1;
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

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

/* Custom Animationen */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    #mehr-inhalt {
        padding: 0 20px;
    }

    #mehr-inhalt.active {
        max-height: 600px;
        padding: 40px 20px;
    }

    #mehr-inhalt h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    #mehr-inhalt p {
        font-size: 15px;
    }

    .btn-secondary {
        padding: 10px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    #mehr-inhalt.active {
        max-height: 700px;
        padding: 30px 15px;
    }

    #mehr-inhalt h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    #mehr-inhalt p {
        font-size: 14px;
        line-height: 1.7;
    }

    .btn-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }
}
/* Statistik-Sektion */
.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.stats div {
    min-width: 160px;
    text-align: center;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--accent-600);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

@media (max-width:900px) {
    .stats div { min-width: 140px; font-size: 18px; }
    .stats { padding: 40px 12px; gap: 14px; }
}

@media (max-width:480px) {
    .stats { gap: 10px; padding: 30px 10px; }
    .stats div { min-width: 120px; font-size: 16px; }
}

/* FAQ */
.faq {
    background: var(--muted);
    padding: 80px 20px;
}

.faq h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--dark-green);
}

.faq-item {
    background: white;
    margin: 10px auto;
    max-width: 700px;
    padding: 20px 25px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 12px 48px -10px rgba(0, 0, 0, 0.12);
}

.faq-item summary {
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 20px;
    color: var(--dark-green);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    margin-top: 10px;
    animation: fadeIn 0.3s ease-in;
    color: #555;
}

/* Über Mich */
.about {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 20px;
    align-items: center;
    background: white;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

#h2-aboutme {
    margin-top: 5vh;
    color: var(--dark-green);
    width: 100%;
}

.about img {
    max-width: 380px;
    margin: 0;
    border-radius: 30px;
    box-shadow: 0 15px 50px -10px rgba(0, 0, 0, 0.15);
}

.about-text {
    max-width: 700px;
}

@media (max-width: 900px) {
    .about { padding: 60px 16px; gap: 30px; }
    .about img { max-width: 100%; margin: 0 auto; }
    .about-text { text-align: center; }
    #h2-aboutme { margin-top: 3vh; text-align: center; }
}

/* Fix: treatment cards on small screens to avoid overflow and large padding */
@media (max-width: 600px) {
    .treatment {
        max-width: 100%;
        width: calc(100% - 32px);
        margin: 18px auto;
        padding: 20px 18px;
        border-radius: 14px;
        box-shadow: 0 10px 30px -12px rgba(0,0,0,0.08);
    }
    .treatment h3 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 8px;
        color: var(--forest-green);
        word-break: break-word;
    }
    .treatment p {
        font-size: 15px;
        line-height: 1.65;
    }
}

/* CTA Bereich */
.cta-section {
    text-align: center;
    padding: 80px 20px;
    background: var(--muted);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--dark-green);
}

.cta-section a {
    background: var(--accent);
    padding: 15px 30px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.6s ease;
    box-shadow: 0 10px 40px -10px rgba(164, 213, 156, 0.3);
}

.cta-section a:hover {
    background: var(--accent-600);
    transform: translateY(-2px);
    box-shadow: 0 12px 48px -10px rgba(93, 215, 74, 0.4);
}

/* Massagearten */
.treatments {
    background: #ffffff;
    padding: 80px 20px;
}

.treatments h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--dark-green);
}

.treatment {
    max-width: 800px;
    margin: 30px auto;
    padding: 30px 35px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease-in-out;
}

.treatment:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px -10px rgba(0, 0, 0, 0.12);
}

.treatment h3 {
    margin-top: 0;
    font-size: 24px;
    color: var(--forest-green);
}

.treatment p {
    margin: 15px 0 0;
    line-height: 1.6;
    color: #555;
}

/* Pricing Section */
.pricing {
    background: var(--muted);
    padding: 80px 20px;
}

.pricing h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--dark-green);
}

.pricing-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-section {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.pricing-section:hover {
    box-shadow: 0 15px 50px -10px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.pricing-section h3 {
    text-align: center;
    font-size: 22px;
    color: var(--forest-green);
    margin-bottom: 25px;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item .duration {
    font-weight: 600;
    color: var(--dark-green);
}

.price-item .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-600);
}

@media (max-width: 800px) {
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Info Section */
.info-section {
    background: linear-gradient(135deg, #f9f7f5 0%, #ffffff 100%);
    padding: 100px 20px;
}

.info-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 70px;
    color: var(--dark-green);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.info-section > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 45px 35px;
    border-radius: 25px;
    border: 1px solid rgba(164, 213, 156, 0.2);
    box-shadow: 0 15px 50px -15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(164, 213, 156, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
    z-index: 0;
}

.info-card:hover::before {
    top: -30%;
    right: -30%;
}

.info-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px -10px rgba(164, 213, 156, 0.15);
    border-color: rgba(164, 213, 156, 0.4);
}

.info-card h3 {
    font-size: 22px;
    color: var(--forest-green);
    margin: 0 0 20px 0;
    font-weight: 700;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0 0 15px 0;
    position: relative;
    z-index: 1;
}

.info-card p:last-of-type {
    margin-bottom: 0;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    position: relative;
    z-index: 1;
}

.info-card ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 12px 0;
    padding-left: 28px;
    position: relative;
}

.info-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-600);
    font-weight: bold;
    font-size: 18px;
}

.info-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    margin-top: 25px;
    box-shadow: 0 12px 35px -10px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.info-card:hover .info-image {
    transform: scale(1.02);
}

/* Optional: Stil für Intro-Absatz */
.about-text .intro {
    margin-top: 20px;
    font-style: italic;
}

/* Social Media */
.social {
    text-align: center;
    background: white;
    padding: 50px 20px;
}

.social h2 {
    font-size: 28px;
    color: var(--dark-green);
    margin-bottom: 30px;
}

.social a {
    margin: 0 10px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.social a:hover {
    transform: scale(1.1);
}

.social img {
    width: 40px;
    height: 40px;
}

/* Kontaktformular */
.contact {
    background: var(--muted);
    padding: 80px 20px;
}

.contact h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--dark-green);
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
    margin: 0 auto;
}

input, textarea {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 16px;
    font-family: var(--ff-sans);
    transition: all 0.3s ease;
    background: white;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(164, 213, 156, 0.15);
}

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

form button {
    background-color: var(--forest-green);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px -10px rgba(85, 109, 71, 0.3);
}

form button:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 12px 48px -10px rgba(25, 49, 84, 0.4);
}

.contact-details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-details div {
    margin: 15px;
    min-width: 200px;
    text-align: center;
}

/* Contact grid: form + map side by side */
.contact .contact-grid {
    display: grid;
    gap: 30px;
    align-items: start;
    max-width: 1100px;
    margin: 20px auto 0;
}

/* When contact-details exist alongside the map, use a two-column layout */
.contact-grid--with-details { grid-template-columns: minmax(300px, 1fr) 360px; }
.contact .contact-grid .map-wrapper { height: 360px; }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
    padding: 10px 6px;
}
.contact-item {
    text-align: left;
    font-size: 16px;
    color: #222;
}
.contact-item a { color: var(--dark-green); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

.map-wrapper {
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

@media (max-width:900px) {
  .contact .contact-grid { grid-template-columns: 1fr; }
  .map-wrapper { height: 260px; }
}

/* Fix: prevent header nav from being cut off on very small phones */
.main-header { overflow: visible; }

@media (max-width:420px) {
  .main-header {
    flex-wrap: wrap;
    padding: 8px 12px;
    margin: 8px;
    border-radius: 12px;
    align-items: center;
    gap: 6px;
  }
  .logo span { font-size: 15px; }
  .main-nav {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    order: 3;
    margin-top: 4px;
  }
  .main-nav a { margin: 6px 8px; font-size: 15px; white-space: normal; }
  .header-actions { order: 2; }
  .cta { padding: 8px 12px; font-size: 14px; }
}

/* Global fixes for responsive behavior */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; }
input, textarea { box-sizing: border-box; width: 100%; }

/* Small-screen header and layout tweaks */
@media (max-width:800px) {
  .main-header { margin: 10px; padding: 8px 12px; border-radius: 14px; }
  .cta { padding: 8px 14px; }
  .main-nav { gap: 12px; }
}

/* Ensure contact grid collapses earlier and maps/forms behave on narrow screens */
@media (max-width:700px) {
  .contact .contact-grid { grid-template-columns: 1fr !important; gap: 20px; padding: 0 16px; }
  .contact .contact-grid form { width: 100%; max-width: 100%; margin: 0 auto; }
  .map-wrapper { height: 260px; }
}

/* Tight mobile adjustments */
@media (max-width:480px) {
  .hero { padding: 40px 12px; }
  .hero h1 { font-size: 28px; }
  .treatments h2, .contact h2 { font-size: 24px; }
  .main-header { padding: 8px 10px; margin: 8px; }
}

/* Footer */
footer {
    background: var(--dark-green);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

footer a {
    color: #c8e6c9;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

/* Animationen */
@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

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

#basti{
    text-decoration: underline;
}

.content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    line-height: 1.7;
    font-size: 18px;
}

.content h1 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--dark-green);
}

.content h2 {
    font-size: 24px;
    margin-top: 40px;
    color: var(--forest-green);
}

.content p,
.content ul {
    margin-bottom: 20px;
}

.highlight {
    background: var(--muted);
    padding: 80px 20px;
}

.highlight-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.6s ease-in-out;
}

.highlight h2 {
    font-size: 32px;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.highlight p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mehr-erfahren-section {
    padding: 80px 20px;
    background: #fff;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-actions .phone {
    background: transparent;
    color: var(--dark-green);
    text-decoration: none;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.header-actions .phone:hover {
    background: rgba(25, 49, 84, 0.08);
    color: var(--forest-green);
}

/* Mobile: collapse spacing */
@media (max-width:800px) {
    .main-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: space-around;
    }

    .header-actions {
        order: 2;
    }
}

@media (max-width: 1100px) {
    .info-section > div {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .info-section h2 {
        font-size: 32px;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .info-section {
        padding: 70px 20px;
    }

    .info-section > div {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .info-card {
        padding: 35px 25px;
    }

    .info-card h3 {
        font-size: 20px;
    }

    .info-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 50px 15px;
    }

    .info-card {
        padding: 25px 20px;
    }

    .info-card h3 {
        font-size: 18px;
        gap: 8px;
    }

    .info-card p {
        font-size: 14px;
    }

    .info-image {
        height: 180px;
        margin-top: 20px;
    }
}

/* ===================================
   CONSENT BANNER
   =================================== */

.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #193154 0%, #2d5a6d 100%);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.consent-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.consent-text h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.consent-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.consent-text a {
    color: #a4d59c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.consent-text a:hover {
    color: #5dd74a;
    text-decoration: underline;
}

.consent-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    white-space: nowrap;
}

.consent-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: 'Montserrat', system-ui;
}

.consent-btn-primary {
    background: #a4d59c;
    color: white;
    box-shadow: 0 5px 20px rgba(164, 213, 156, 0.3);
}

.consent-btn-primary:hover {
    background: #5dd74a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(93, 215, 74, 0.4);
}

.consent-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.consent-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.consent-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.consent-link:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .consent-content {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .consent-text {
        text-align: center;
    }
    
    .consent-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .consent-btn {
        flex: 1;
        min-width: 140px;
    }
    
    .consent-text p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .consent-banner {
        padding: 15px;
    }
    
    .consent-buttons {
        width: 100%;
    }
    
    .consent-btn {
        width: 100%;
    }
    
    .consent-link {
        display: none;
    }
}

/* Animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes menuDrop {
    from { transform: translateX(-50%) translateY(-6px); opacity: 0; }
    to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

/* Ensure mobile nav is hidden by default and only visible when .open
     This override is placed at the end to supersede earlier responsive rules. */
@media (max-width: 800px) {
    .nav-toggle { z-index: 10002; }
    /* hidden by default */
    .main-nav { display: none !important; }

    /* visible dropdown centered under header */
    .main-nav.open {
        display: flex !important;
        position: absolute;
        top: 72px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 64px);
        max-width: 360px;
        background: white;
        border-radius: 14px;
        padding: 12px 8px;
        box-shadow: 0 18px 50px rgba(0,0,0,0.18);
        flex-direction: column;
        gap: 6px;
        align-items: stretch;
        animation: menuDrop 220ms cubic-bezier(.2,.9,.2,1);
        z-index: 10001;
    }

    .main-nav a { padding: 14px 18px; text-align: center; display: block; font-size: 17px; color: var(--dark-green); }
    .main-nav a:not(:last-child) { border-bottom: 1px solid rgba(0,0,0,0.06); }
}

/* Close menu when not visible: ensure it doesn't block pointer events */
.main-nav { pointer-events: auto; }
