/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* CSS Custom Properties (Sunny Horizon Palette) */
:root {
    --pri: #FFFDF0; /* Primary light background */
    --sec: #F5C842; /* Secondary, often used in gradients */
    --acc: #D4A817; /* Accent, main call to action color */
    --dark: #4A3800; /* Darkest brand color, sometimes headings */
    --textDark: #1A1400; /* Main body text color (WCAG AA) */
    --textMid: #4A3800; /* Mid-tone text for less emphasis */
    --textLight: #6B5200; /* Lighter text for muted elements */

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --section-padding-y: clamp(30px, 8vw, 70px);
    --container-padding-x: clamp(16px, 5vw, 70px);

    /* UI Elements */
    --button-radius: 4px;
    --card-radius: 24px;
    --card-shadow: 0 20px 60px rgba(0,0,0,0.1);

    /* Header height for sticky calculations */
    --header-height: 80px;
    --bg-light: #fff;
}

/* 1. Global Resets & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 93.75%; /* 15px base – чуть крупнее по сайту */
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%; /* Prevent text zoom on orientation change */
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--textDark);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll due to animations */
}

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

a {
    text-decoration: none;
    color: var(--acc);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark);
}

ul {
    list-style: none;
}

/* Accessibility: Focus outline */
:focus-visible {
    outline: 2px solid var(--acc);
    outline-offset: 2px;
}

/* 2. Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    margin-bottom: 0.8em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(1.65rem, 3.5vw, 2.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.65rem, 4vw, 2.65rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.1rem, 2.6vw, 1.65rem);
    font-weight: 600;
}

h5 {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    font-weight: 500;
}

h6 {
    font-size: clamp(0.9rem, 1.75vw, 1.1rem);
    font-weight: 500;
}

p {
    margin-bottom: 1em;
}

.for-muted {
    color: var(--textLight);
    font-size: 0.9rem;
}

/* Ensure no text lighter than #555555 on white/light backgrounds */
body, .for-form__group label, .for-attraction-card__title, .for-attraction-card__description,
.for-review-card__quote, .for-review-card__author {
    color: var(--textDark); /* #1A1400 on white/light backgrounds */
}
.for-muted, .for-attraction-card__location, .for-review-card__destination {
    color: var(--textMid); /* #4A3800, still dark enough for WCAG AA on white */
}

/* Hero text on images (WCAG AA) */
.for-hero h1,
.for-hero p,
.for-hero .for-btn,
.for-destination-card__content {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.for-destination-card__name {
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* 3. Layout Helpers */
.for-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
}

.for-section {
    padding: var(--section-padding-y) var(--container-padding-x);
    position: relative;
    overflow: hidden; /* For wave separators */
}

.for-section:nth-of-type(odd) {
    background-color: #fff;
}

.for-section:nth-of-type(even) {
    background-color: var(--pri);
}

/* Section separators: wave-svg */
.for-section__wave-bottom {
    content: '';
    display: block;
    width: 100%;
    height: 100px; /* Standard wave height */
    background-size: cover; /* Cover the full width */
    background-repeat: no-repeat;
    background-position: center bottom; /* Anchor wave to bottom */
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

/* Wave from white section (odd type) to pri section (even type) */
.for-section:nth-of-type(odd) .for-section__wave-bottom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23FFFDF0' fill-opacity='1' d='M0,160L48,170.7C96,181,192,203,288,186.7C384,171,480,117,576,106.7C672,96,768,128,864,138.7C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
}

/* Wave from pri section (even type) to white section (odd type) */
.for-section:nth-of-type(even) .for-section__wave-bottom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,160L48,170.7C96,181,192,203,288,186.7C384,171,480,117,576,106.7C672,96,768,128,864,138.7C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
}

.for-grid {
    display: grid;
    gap: clamp(24px, 4vw, 48px);
}

.for-grid-2 {
    grid-template-columns: 1fr;
}

.for-grid-3 {
    grid-template-columns: 1fr;
}

.for-grid-4 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .for-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .for-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .for-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .for-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .for-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .for-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.for-image-container {
    overflow: hidden;
    position: relative;
}

.for-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}

.for-image-container:hover img {
    transform: scale(1.05);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for grid items */
/* Up to 6 children */
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }
.reveal:nth-child(5) { transition-delay: 0.5s; }
.reveal:nth-child(6) { transition-delay: 0.6s; }


/* 4. UI Components */
.for-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--button-radius);
    background: linear-gradient(90deg, var(--sec), var(--acc), var(--sec));
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px; /* Mobile touch target */
    text-align: center;
    background-size: 200% auto; /* For gradient shift on hover */
}

.for-btn:hover {
    background-position: right center; /* Shift gradient */
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.for-btn--outline {
    background: transparent;
    color: var(--acc);
    border: 2px solid var(--acc);
}

.for-btn--outline:hover {
    background: var(--acc);
    color: #fff;
}

.for-card {
    background-color: #fff;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure cards in grid have equal height */
    display: flex;
    flex-direction: column;
}

.for-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 72px rgba(0,0,0,0.15);
}

/* Popup */
.for-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.for-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.for-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.for-popup__box {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}

.for-popup__icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.for-popup__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.for-popup__msg {
    font-size: 1rem;
    color: var(--textMid);
    line-height: 1.6;
    margin-bottom: 24px;
}

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

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

/* Cookie Banner */
.for-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    color: #fff;
    padding: 20px var(--container-padding-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
}

.for-cookie-banner.active {
    transform: translateY(0);
}

.for-cookie-banner__content {
    max-width: 900px;
    text-align: center;
}

.for-cookie-banner__buttons {
    display: flex;
    gap: 10px;
}

.for-cookie-banner .for-btn {
    min-width: 100px;
    padding: 10px 18px;
    font-size: 0.9rem;
}

.for-cookie-banner .for-btn--accept {
    background: var(--acc);
    color: #fff;
}

.for-cookie-banner .for-btn--decline {
    background: transparent;
    border: 2px solid var(--sec);
    color: var(--sec);
}

.for-cookie-banner .for-btn--decline:hover {
    background: var(--sec);
    color: var(--dark);
    box-shadow: none;
    transform: none;
}


/* 5. Specific Sections */

/* Header */
.for-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 16px var(--container-padding-x);
    z-index: 100;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.for-header.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(20px);
}

.for-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.for-logo {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
/* Лого в хедере без увеличения (как при 14px base) */
.for-header .for-logo {
    font-size: 15px;
}

.for-logo span {
    color: var(--acc);
}

.for-menu-toggle {
    display: none; /* Hidden on desktop */
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    padding: 8px;
    min-width: 48px;
    min-height: 48px;
    line-height: 1;
}

.for-navbar-links {
    display: none; /* Hidden by default on mobile */
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.for-navbar-links.open {
    max-height: 500px; /* Arbitrary large value to allow full height */
    border-top: 1px solid rgba(0,0,0,0.05);
}

.for-navbar-links a,
.for-dropdown__toggle {
    display: block;
    padding: 15px var(--container-padding-x);
    color: var(--textDark);
    font-family: var(--font-heading);
    font-weight: 500;
    transition: background-color 0.3s ease;
    width: 100%;
    text-align: left;
    min-height: 48px;
}

.for-navbar-links a:hover,
.for-dropdown__toggle:hover,
.for-navbar-links a.active {
    background-color: var(--pri);
    color: var(--dark);
}

.for-dropdown {
    position: relative;
}

.for-dropdown__toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.for-dropdown__menu {
    display: none;
    flex-direction: column;
    background-color: var(--pri);
    padding-left: 20px;
}

.for-dropdown.active .for-dropdown__menu {
    display: flex;
}

.for-dropdown__menu a {
    padding-left: calc(var(--container-padding-x) + 20px); /* Indent dropdown items */
}

@media (min-width: 768px) {
    .for-menu-toggle {
        display: none;
    }

    .for-navbar-links {
        display: flex;
        flex-direction: row;
        position: static;
        max-height: none;
        box-shadow: none;
        background-color: transparent;
        transition: none;
        border-top: none;
    }

    .for-navbar-links a,
    .for-dropdown__toggle {
        padding: 10px 15px;
        width: auto;
    }

    .for-dropdown {
        position: relative;
    }

    .for-dropdown__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        min-width: 200px;
        box-shadow: var(--card-shadow);
        border-radius: var(--button-radius);
        padding-left: 0;
        z-index: 10;
        max-height: 0; /* for smooth dropdown animation */
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .for-dropdown:hover .for-dropdown__menu {
        display: flex;
        max-height: 300px; /* adjust based on content */
    }

    .for-dropdown__menu a {
        padding: 12px 20px;
        text-align: left;
        padding-left: 20px; /* Reset padding for dropdown items */
    }
}


/* Hero Section */
.for-hero {
    min-height: 80svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden; /* For mesh gradient */
}

/* Hero background overlay for better text readability */
.for-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4); /* Darken image so heading and text are readable */
    z-index: 1;
}

.for-country-hero-content {
  z-index: 2;
}

.for-hero__content {
    position: relative;
    z-index: 2;
    padding: var(--section-padding-y) var(--container-padding-x);
    max-width: 800px;
}

.for-hero h1 {
    margin-bottom: 0.3em;
}

.for-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 30px;
}

.for-hero .for-btn {
    margin-top: 20px;
}

/* Mesh Gradient Animation */
.for-hero__mesh-gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at 10% 90%, var(--sec) 0%, transparent 45%),
                radial-gradient(circle at 90% 10%, var(--acc) 0%, transparent 45%),
                radial-gradient(circle at 50% 50%, var(--pri) 0%, transparent 50%);
    background-size: 200% 200%, 180% 180%, 220% 220%;
    background-position: 0% 0%, 50% 50%, 100% 100%;
    animation: for-mesh-gradient-shift 25s ease-in-out infinite alternate;
    opacity: 0.6; /* Subtle effect */
}

@keyframes for-mesh-gradient-shift {
    0% { background-position: 0% 0%, 50% 50%, 100% 100%; }
    25% { background-position: 10% 70%, 70% 20%, 30% 80%; }
    50% { background-position: 80% 10%, 20% 90%, 60% 40%; }
    75% { background-position: 30% 60%, 90% 30%, 10% 70%; }
    100% { background-position: 0% 0%, 50% 50%, 100% 100%; }
}


/* Form Styles */
.for-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.for-form__group {
    display: flex;
    flex-direction: column;
}

.for-form__group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--textDark);
    font-size: 0.95rem;
}

.for-form__group input,
.for-form__group textarea,
.for-form__group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: var(--button-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--textDark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    min-height: 48px; /* Touch target */
}

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

.for-form__group input:focus,
.for-form__group textarea:focus,
.for-form__group select:focus {
    border-color: var(--acc);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 168, 23, 0.2); /* Direct rgba for --acc */
}


/* Footer */
.for-footer {
    background: linear-gradient(90deg, var(--dark), var(--textMid)); /* Darker gradient for footer */
    color: #fff;
    padding-top: calc(var(--section-padding-y) + 10px); /* Adjust for wave height */
    padding-bottom: var(--section-padding-y);
    position: relative;
    text-align: center;
}

.for-footer::before {
    content: '';
    display: block;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%234A3800' fill-opacity='1' d='M0,160L48,170.7C96,181,192,203,288,186.7C384,171,480,117,576,106.7C672,96,768,128,864,138.7C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    transform: scaleY(-1);
}

.for-footer .for-logo {
    color: #fff;
    margin-bottom: 15px;
    justify-content: center;
}

.for-footer .for-logo span {
    color: var(--sec);
}

.for-footer__tagline {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.for-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .for-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
    .for-footer .for-logo {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .for-footer__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.for-footer__col h4 {
    color: var(--sec);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.for-footer__col ul {
    padding: 0;
    list-style: none;
}

.for-footer__col ul li {
    margin-bottom: 10px;
}

.for-footer__col ul li a {
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    transition: color 0.3s ease;
}

.for-footer__col ul li a:hover {
    color: #fff;
}

.for-footer__col p {
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    margin-bottom: 10px;
}
.for-footer__col p strong {
    color: var(--sec);
}

.for-footer__bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* Specific elements for destination/country cards */
.for-destination-card {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 250px;
    display: flex;
    align-items: flex-end;
}

.for-destination-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 72px rgba(0,0,0,0.15);
}

.for-destination-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    z-index: 0;
}

.for-destination-card:hover img {
    transform: scale(1.05);
}

.for-destination-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
    z-index: 1;
}

.for-destination-card__content {
    position: relative;
    z-index: 2;
    padding: 25px;
    color: #fff;
    width: 100%;
}

.for-destination-card__flag {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.for-destination-card__name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
}

/* Attraction cards for country pages */
.for-attraction-card {
    background-color: #fff;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.for-attraction-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 72px rgba(0,0,0,0.15);
}

.for-attraction-card__image {
    height: 200px;
    overflow: hidden;
}

.for-attraction-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.for-attraction-card:hover .for-attraction-card__image img {
    transform: scale(1.05);
}

.for-attraction-card__content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.for-attraction-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.for-attraction-card__location {
    display: inline-block;
    background-color: var(--pri);
    color: var(--textMid);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.for-attraction-card__description {
    color: var(--textMid);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Review cards */
.for-review-card {
    background-color: #fff;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.for-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 72px rgba(0,0,0,0.15);
}

.for-review-card__avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.for-review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.for-review-card__stars {
    color: var(--sec);
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.for-review-card__quote {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.for-review-card__author {
    font-weight: 600;
    color: var(--dark);
    margin-top: auto;
}

.for-review-card__destination {
    color: var(--textMid);
    font-size: 0.9rem;
}

/* Accordion (for FAQ or similar) */
.for-accordion__item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.for-accordion__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark);
    font-size: 1.1rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    min-height: 48px; /* Touch target */
}

.for-accordion__header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--acc);
    transition: transform 0.3s ease;
}

.for-accordion__item.active .for-accordion__header::after {
    transform: rotate(45deg);
}

.for-accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding-bottom: 0;
    color: var(--textMid);
    line-height: 1.6;
}

.for-accordion__item.active .for-accordion__content {
    max-height: 300px; /* Arbitrary large value to allow full height */
    padding-bottom: 15px;
}

/* Mobile specific overrides */
@media (max-width: 767px) {
    .for-header {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .for-menu-toggle {
        display: block;
    }
    .for-navbar-links {
        padding: 0;
        left: 0;
        right: 0;
        top: calc(var(--header-height) - 10px);
        z-index: 90;
    }
    .for-navbar-links a,
    .for-dropdown__toggle {
        padding-left: var(--container-padding-x);
        padding-right: var(--container-padding-x);
    }
    .for-dropdown__menu a {
        padding-left: calc(var(--container-padding-x) + 20px);
    }
    .for-cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    .for-cookie-banner__buttons {
        flex-direction: column;
        width: 100%;
    }
    .for-cookie-banner .for-btn {
        width: 100%;
    }
    .for-hero h1 {
        font-size: clamp(2.5rem, 10vw, 4.5rem);
    }
    .for-hero p {
        font-size: clamp(1rem, 4vw, 1.3rem);
    }
    .for-footer .for-logo {
        justify-content: center;
    }
}

/* ========== Alias styles for HTML class names (for-nav, for-hero-content, etc.) ========== */
body.no-scroll {
    overflow: hidden;
}

/* Header: layout with .for-header-content, .for-nav, .for-nav-list */
.for-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.for-nav {
    display: flex;
    align-items: center;
}

.for-nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (max-width: 767px) {
  .for-nav {
    display: none;
  }
}

.for-nav.open {
  display: contents;
}

.for-nav.open .for-nav-list {
    display: flex;
    max-height: 500px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.for-nav.open .for-dropdown-menu {
    display: flex;
}

@media (max-width: 767px) {
    .for-nav-list {
        top: var(--header-height);
        left: 0;
        right: 0;
        z-index: 90;
    }
}

.for-nav-link {
    display: block;
    padding: 15px var(--container-padding-x);
    color: var(--textDark);
    font-family: var(--font-heading);
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-height: 48px;
}

.for-nav-link:hover,
.for-nav-link.current-page {
    background-color: var(--pri);
    color: var(--dark);
}

.for-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font: inherit;
}

.for-dropdown-menu {
    display: none;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: var(--pri);
    padding-left: 20px;
}

.for-dropdown.active .for-dropdown-menu {
    display: flex;
}

.for-dropdown-menu .for-nav-link {
    padding-left: calc(var(--container-padding-x) + 20px);
}

.for-hamburger-line {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--dark);
    margin: 5px 0;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.for-menu-toggle.open .for-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.for-menu-toggle.open .for-hamburger-line:nth-child(2) {
    opacity: 0;
}
.for-menu-toggle.open .for-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (min-width: 768px) {
    .for-nav-list {
        display: flex;
        flex-direction: row;
        position: static;
        max-height: none;
        box-shadow: none;
        background-color: transparent;
        border-top: none;
        overflow: visible; /* allow dropdown menu to show below */
    }
    .for-nav.open .for-nav-list {
        max-height: none;
    }
    .for-nav-link,
    .for-dropdown-toggle {
        padding: 10px 15px;
        width: auto;
    }
    /* Dropdown: position context and invisible bridge so hover doesn't break */
    .for-dropdown {
        position: relative;
    }
    .for-dropdown::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 12px;
        z-index: 9;
    }
    .for-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: 0;
        background-color: #fff;
        min-width: 200px;
        box-shadow: var(--card-shadow);
        border-radius: var(--button-radius);
        padding: 8px 0 0;
        z-index: 10;
        max-height: 320px;
        overflow: visible;
        display: none;
        flex-direction: column;
    }
    /* Show submenu on hover over Destinations (li or the link) */
    .for-dropdown:hover .for-dropdown-menu,
    .for-dropdown-toggle:hover + .for-dropdown-menu {
        display: flex !important;
    }
    /* Keep submenu visible when moving mouse from link to menu (bridge) */
    .for-dropdown-menu:hover {
        display: flex !important;
    }
    .for-dropdown-menu .for-nav-link {
        padding: 12px 20px;
        white-space: nowrap;
    }
}

/* Hero aliases */
.for-hero-content {
    position: relative;
    z-index: 2;
    padding: var(--section-padding-y) var(--container-padding-x);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    /* Dark backdrop so title and text are always readable */
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.for-hero-title {
    margin-bottom: 0.3em;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 4px 20px rgba(0,0,0,0.6), 0 0 40px rgba(0,0,0,0.3);
}

.for-hero-tagline {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 4px 16px rgba(0,0,0,0.5);
}

.for-hero-subheadline {
    font-size: clamp(0.9rem, 2.2vw, 1.05rem);
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 4px 16px rgba(0,0,0,0.5);
}

.for-mesh-gradient-bg .for-hero__mesh-gradient,
.for-mesh-gradient-bg::before {
    display: none;
}
.for-mesh-gradient-bg {
    position: relative;
}
.for-mesh-gradient-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at 10% 90%, var(--sec) 0%, transparent 45%),
                radial-gradient(circle at 90% 10%, var(--acc) 0%, transparent 45%),
                radial-gradient(circle at 50% 50%, var(--pri) 0%, transparent 50%);
    background-size: 200% 200%, 180% 180%, 220% 220%;
    animation: for-mesh-gradient-shift 25s ease-in-out infinite alternate;
    opacity: 0.35; /* Lighter so hero overlay keeps text readable */
}
.for-mesh-gradient-bg .for-hero-content {
    position: relative;
    z-index: 2;
}

.for-btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Section utilities */
.for-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.8vw, 2.5rem);
    font-weight: 700;
    color: var(--textDark);
    margin-bottom: 1em;
    text-align: center;
}

.for-section-subtitle {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.for-section-wave {
    display: block;
    width: 100%;
    height: 80px;
    margin: -1px 0 0;
    vertical-align: middle;
}

.for-section-wave.for-wave-reverse {
    transform: scaleY(-1);
    margin-bottom: -1px;
}

.for-section-wave.for-footer-wave {
    display: block;
    width: 100%;
    height: 80px;
    fill: var(--dark);
}

.for-bg-primary {
    background-color: var(--pri);
}

.for-bg-light {
    background-color: var(--bg-light);
}

.for-bg-accent-gradient {
    background: linear-gradient(135deg, var(--sec) 0%, var(--acc) 100%);
}

.for-text-center {
    text-align: center;
}

.for-text-white {
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.for-text-dark {
    color: var(--dark) !important;
}

.for-text-mid {
    color: var(--textMid);
}

.for-mt-large {
    margin-top: 2.5rem;
}

.for-mt-medium {
    margin-top: 1.5rem;
}

/* Grid aliases */
.for-grid-4-cols {
    grid-template-columns: 1fr;
}
.for-grid-3-cols {
    grid-template-columns: 1fr;
}
.for-grid-2-cols {
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .for-grid-4-cols { grid-template-columns: repeat(2, 1fr); }
    .for-grid-3-cols { grid-template-columns: repeat(2, 1fr); }
    .for-grid-2-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .for-grid-3-cols { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1280px) {
    .for-grid-4-cols { grid-template-columns: repeat(4, 1fr); }
}

/* Destination cards (index style with .for-card-overlay) */
.for-card.for-destination-card {
    min-height: 220px;
    align-items: flex-end;
}

.for-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: #fff;
}

.for-destination-flag {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.for-destination-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.4);
}

.for-card-no-img {
    background: linear-gradient(135deg, var(--sec) 0%, var(--acc) 100%);
}

.for-card-no-img .for-card-overlay {
    position: relative;
    flex-grow: 1;
}

/* Our Top Destinations: unified tile cards (no images) */
.for-destination-card-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: 32px 24px;
    background: #fff;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(74, 56, 0, 0.08);
    text-align: center;
    text-decoration: none;
    color: var(--textDark);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.for-destination-card-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(74, 56, 0, 0.12);
    border-color: var(--acc);
    color: var(--textDark);
}

.for-destination-card-tile .for-destination-flag {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    line-height: 1;
}

.for-destination-card-tile .for-destination-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-shadow: none;
    margin-bottom: 12px;
    line-height: 1.2;
}

.for-destination-cta {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--acc);
    letter-spacing: 0.02em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.for-destination-card-tile:hover .for-destination-cta {
    color: var(--dark);
    transform: translateX(4px);
}

/* Feature items (Why Choose Us) */
.for-feature-item {
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.for-feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 72px rgba(0,0,0,0.15);
}

.for-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: block;
    object-fit: contain;
}

.for-feature-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.for-feature-description {
    color: var(--textMid);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Newsletter form & form group/input aliases */
.for-newsletter-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: flex-end;
    margin-top: 24px;
}

.for-form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
}

.for-form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--textDark);
    font-size: 0.95rem;
}

.for-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: var(--button-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--textDark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    min-height: 48px;
}

.for-input:focus {
    border-color: var(--acc);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 168, 23, 0.2);
}

.for-input-light {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.for-input-light::placeholder {
    color: rgba(255,255,255,0.8);
}

.for-btn-primary {
    background: linear-gradient(90deg, var(--sec), var(--acc), var(--sec));
    color: #fff;
    border: none;
}

.for-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.8);
}

.for-btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* On light sections, secondary button should be visible (accent style) */
.for-bg-light .for-btn-secondary,
.for-section.for-bg-light .for-btn-secondary {
    background: linear-gradient(90deg, var(--sec), var(--acc));
    color: #fff;
    border-color: var(--acc);
}
.for-bg-light .for-btn-secondary:hover,
.for-section.for-bg-light .for-btn-secondary:hover {
    background: var(--acc);
    color: #fff;
    border-color: var(--acc);
}

.for-btn-dark {
    background: var(--dark);
    color: #fff;
    border: none;
}

/* Testimonial cards */
.for-testimonial-card {
    background: #fff;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.for-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 72px rgba(0,0,0,0.15);
}

.for-testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.for-testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.for-testimonial-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sec), var(--acc));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.for-testimonial-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 4px 0;
}

.for-testimonial-destination {
    color: var(--textMid);
    font-size: 0.9rem;
    margin: 0;
}

.for-star-rating {
    color: var(--sec);
    font-size: 1.2rem;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

/* Reviews page: overall rating block above the cards */
.for-overall-rating {
    text-align: center;
    margin-bottom: 2.5rem;
}

.for-overall-rating .for-section-title {
    margin-bottom: 0.5rem;
}

.for-star-rating-large {
    font-size: 2.5rem;
    color: var(--sec);
    letter-spacing: 0.08em;
    margin: 0.5rem 0;
    line-height: 1;
}

.for-overall-rating .for-text-mid {
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: 1rem;
}

.for-testimonial-quote {
    font-style: italic;
    color: var(--textDark);
    line-height: 1.6;
    margin: 0 0 1em 0;
}

/* Featured cards */
.for-featured-item .for-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--button-radius) var(--button-radius) 0 0;
}

.for-featured-item .for-card-content {
    padding: 24px;
}

.for-featured-item .for-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.for-featured-item .for-card-description {
    color: var(--textMid);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Footer aliases */
.for-footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .for-footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .for-footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.for-footer-col {
    margin-bottom: 0;
}

.for-footer-col h4,
.for-footer-heading {
    color: var(--sec);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.for-footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.for-footer-logo:hover {
    color: var(--sec);
}

.for-footer-tagline {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.for-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.for-footer-links li {
    margin-bottom: 10px;
}

.for-footer-links a {
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    transition: color 0.3s ease;
}

.for-footer-links a:hover {
    color: #fff;
}

.for-address {
    font-style: normal;
}

.for-address p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.for-address p {

}

.for-address a {
    color: rgba(255,255,255,0.9);
}

.for-copyright {
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    text-align: center;
}

/* Cookie banner buttons alias */
.for-cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.for-cookie-banner .for-btn-primary {
    background: var(--acc);
    color: #fff;
}

.for-cookie-banner .for-btn-secondary {
    background: transparent;
    border: 2px solid var(--sec);
    color: var(--sec);
}

.for-link {
    color: var(--sec);
    text-decoration: underline;
}

/* Page hero (inner pages) */
.for-page-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.for-gradient-hero {
    background: linear-gradient(135deg, var(--sec) 0%, var(--acc) 100%);
}

.for-gradient-hero .for-hero-title.for-text-dark {
    color: var(--textDark);
    text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

.for-gradient-hero .for-hero-subheadline.for-text-mid {
    color: var(--textDark);
    text-shadow: 0 1px 2px rgba(255,255,255,0.4);
}

/* About page */
.for-about-text .for-section-title {
    text-align: left;
}

.for-about-image img {
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
}

.for-value-card {
    background: #fff;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.for-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 72px rgba(0,0,0,0.15);
}

.for-value-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.for-value-description {
    color: var(--textMid);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact page */
.for-contact-form .for-section-title,
.for-contact-info .for-section-title {
    text-align: left;
}

.for-info-block {
    margin-bottom: 24px;
}

.for-info-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

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

/* Legal pages (Privacy, Cookies, Terms) */
.for-legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.for-legal-content .for-container {
    max-width: 800px;
}

.for-content-heading {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--pri);
}

.for-legal-content p {
    margin-bottom: 1rem;
    color: var(--textDark);
    line-height: 1.7;
}

.for-legal-content .for-content-heading:first-of-type {
    margin-top: 0;
}

.for-bullet-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 1.5rem;
}

.for-bullet-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--textDark);
    line-height: 1.6;
}

.for-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--acc);
}

.for-legal-content address {
    font-style: normal;
    color: var(--textDark);
}

.for-legal-content address p {
    margin-bottom: 0.5rem;
}
