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

:root {
    --sky-blue: #87CEEB;
    --light-blue: #B0E0E6;
    --soft-pink: #FFB6C1;
    --light-pink: #FFE4E1;
    --accent-color: #FFD700;
    --white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-medium: #5D6D7E;
    --text-light: #85929E;
    --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 15px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius-sm: 8px;
    --border-radius-md: 15px;
    --border-radius-lg: 25px;
    --border-radius-full: 50px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

.header {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sky-blue);
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

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

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sky-blue), var(--soft-pink));
    transition: width 0.3s ease;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.8) 0%, rgba(176, 224, 230, 0.8) 100%), url('../images/hero.jpg') center center / cover no-repeat;
    overflow: hidden;
    padding: 4rem 2rem;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    text-align: left;
    color: var(--white);
    z-index: 2;
    position: relative;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 250px;
    height: 250px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 180px;
    height: 180px;
    top: 50%;
    right: 20%;
    animation-delay: 2.5s;
}

.shape-3 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 15%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-40px) rotate(180deg) scale(1.1);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.slide-in {
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

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

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

.btn {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    border-radius: var(--border-radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background: var(--white);
    color: var(--sky-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.95);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--soft-pink), var(--light-pink));
    color: var(--text-dark);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, var(--light-pink), var(--soft-pink));
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--sky-blue), var(--soft-pink));
    border-radius: 2px;
}

.section-description {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.countries-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, #F8F9FA 100%);
}

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

.country-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.country-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.country-card:nth-child(1) .card-image,
.card-image-deutschland {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(176, 224, 230, 0.2)), url('../images/Deutschland.jpg') center center / cover no-repeat;
    background-attachment: scroll;
}

.country-card:nth-child(2) .card-image,
.card-image-oesterreich {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(255, 228, 225, 0.2)), url('../images/Österreich.jpg') center center / cover no-repeat;
    background-attachment: scroll;
}

.country-card:nth-child(3) .card-image,
.card-image-niederlande {
    background: linear-gradient(135deg, rgba(176, 224, 230, 0.2), rgba(135, 206, 235, 0.2)), url('../images/Niederlande.jpg') center center / cover no-repeat;
    background-attachment: scroll;
}

.card-image {
    height: 280px;
    position: relative;
    overflow: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.country-card:hover .card-overlay {
    background: rgba(255, 255, 255, 0.05);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.card-content p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
}

.parks-section {
    padding: 5rem 0;
    background: var(--white);
}

.parks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.park-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.park-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.park-image {
    height: 250px;
    background: linear-gradient(135deg, var(--sky-blue), var(--light-blue));
    position: relative;
    overflow: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.park-image-staedte {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(176, 224, 230, 0.2)), url('../images/Historische Städte.jpg') center center / cover no-repeat;
}

.park-image-natur {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(176, 224, 230, 0.2)), url('../images/Naturwunder.jpg') center center / cover no-repeat;
}

.park-image-kultur {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(176, 224, 230, 0.2)), url('../images/Kulturelle Highlights.jpg') center center / cover no-repeat;
}

.park-image-europa {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(176, 224, 230, 0.2)), url('../images/Europa-Park.jpg') center center / cover no-repeat;
}

.park-image-phantasialand {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(176, 224, 230, 0.2)), url('../images/Phantasialand.jpg') center center / cover no-repeat;
}

.park-image-heide {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(176, 224, 230, 0.2)), url('../images/Heide Park Resort.jpg') center center / cover no-repeat;
}

.park-image-legoland {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(176, 224, 230, 0.2)), url('../images/Legoland Deutschland.jpg') center center / cover no-repeat;
}

.park-image-movie {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(176, 224, 230, 0.2)), url('../images/Movie Park Germany.jpg') center center / cover no-repeat;
}

.park-image-hansa {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(176, 224, 230, 0.2)), url('../images/Hansa-Park.jpg') center center / cover no-repeat;
}

.park-image-oesterreich-1 {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(255, 228, 225, 0.2)), url('../images/Familypark Neusiedlersee .jpg') center center / cover no-repeat;
}

.park-image-oesterreich-2 {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(255, 228, 225, 0.2)), url('../images/Erlebnispark Strasswalchen.jpg') center center / cover no-repeat;
}

.park-image-oesterreich-3 {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(255, 228, 225, 0.2)), url('../images/Freizeitpark Prater.jpg') center center / cover no-repeat;
}

.park-image-oesterreich-4 {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(255, 228, 225, 0.2)), url('../images/Erlebnispark Tripsdrill.jpg') center center / cover no-repeat;
}

.park-image-wien {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(255, 228, 225, 0.2)), url('../images/Wien - Die Hauptstadt .jpg') center center / cover no-repeat;
}

.park-image-salzburg {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(255, 228, 225, 0.2)), url('../images/Salzburg - Mozartstadt.jpg') center center / cover no-repeat;
}

.park-image-alpine {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(255, 228, 225, 0.2)), url('../images/Alpine Regionen.jpg') center center / cover no-repeat;
}

.park-image-kultur-oesterreich {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(255, 228, 225, 0.2)), url('../images/Kulturelle Highlights  A.jpg') center center / cover no-repeat;
}

.park-image-niederlande-1 {
    background: linear-gradient(135deg, rgba(176, 224, 230, 0.2), rgba(135, 206, 235, 0.2)), url('../images/Efteling.jpg') center center / cover no-repeat;
}

.park-image-niederlande-2 {
    background: linear-gradient(135deg, rgba(176, 224, 230, 0.2), rgba(135, 206, 235, 0.2)), url('../images/Duinrell.jpg') center center / cover no-repeat;
}

.park-image-niederlande-3 {
    background: linear-gradient(135deg, rgba(176, 224, 230, 0.2), rgba(135, 206, 235, 0.2)), url('../images/Walibi Holland.jpg') center center / cover no-repeat;
}

.park-image-niederlande-4 {
    background: linear-gradient(135deg, rgba(176, 224, 230, 0.2), rgba(135, 206, 235, 0.2)), url('../images/Toverland.jpg') center center / cover no-repeat;
}

.park-image-niederlande-5 {
    background: linear-gradient(135deg, rgba(176, 224, 230, 0.2), rgba(135, 206, 235, 0.2)), url('../images/Drievliet.jpg') center center / cover no-repeat;
}

.park-image-niederlande-6 {
    background: linear-gradient(135deg, rgba(176, 224, 230, 0.2), rgba(135, 206, 235, 0.2)), url('../images/Avonturenpark Hellendoorn.jpg') center center / cover no-repeat;
}

.park-image-amsterdam {
    background: linear-gradient(135deg, rgba(176, 224, 230, 0.2), rgba(135, 206, 235, 0.2)), url('../images/Amsterdam - Die Hauptstadt .jpg') center center / cover no-repeat;
}

.park-image-rotterdam {
    background: linear-gradient(135deg, rgba(176, 224, 230, 0.2), rgba(135, 206, 235, 0.2)), url('../images/Rotterdam - Moderne Architektur.jpg') center center / cover no-repeat;
}

.park-image-historische-niederlande {
    background: linear-gradient(135deg, rgba(176, 224, 230, 0.2), rgba(135, 206, 235, 0.2)), url('../images/Historische Städte 1.jpg') center center / cover no-repeat;
}

.park-image-natur-niederlande {
    background: linear-gradient(135deg, rgba(176, 224, 230, 0.2), rgba(135, 206, 235, 0.2)), url('../images/Natur und Landschaft.jpg') center center / cover no-repeat;
}

.park-image-deutsche-route {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(176, 224, 230, 0.2)), url('../images/Deutsche Parkroute.jpg') center center / cover no-repeat;
}

.park-image-alpine-route {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(255, 228, 225, 0.2)), url('../images/Alpine Erlebnisse.jpg') center center / cover no-repeat;
}

.park-image-niederlande-route {
    background: linear-gradient(135deg, rgba(176, 224, 230, 0.2), rgba(135, 206, 235, 0.2)), url('../images/Niederländische Themenwelten.jpg') center center / cover no-repeat;
}

.park-info {
    padding: 2rem;
}

.park-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
}

.park-info p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.park-features {
    list-style: none;
    margin-top: 1rem;
}

.park-features li {
    color: var(--text-medium);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.park-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sky-blue);
    font-weight: bold;
}

.content-section {
    padding: 5rem 0;
}

.content-section:nth-child(even) {
    background: linear-gradient(180deg, #F8F9FA 0%, var(--white) 100%);
}

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

.content-image {
    height: 400px;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, var(--soft-pink), var(--light-pink));
    overflow: hidden;
    position: relative;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.content-image-europa {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(255, 228, 225, 0.2)), url('../images/Unsere Destinationen.jpg') center center / cover no-repeat;
}

.content-image-deutschland-kultur {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(176, 224, 230, 0.2)), url('../images/Deutsche Parkkultur und Reiseziele.jpg') center center / cover no-repeat;
}

.content-image-alpine-oesterreich {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(255, 228, 225, 0.2)), url('../images/Alpine Erlebnisse und Reiseziele.jpg') center center / cover no-repeat;
}

.content-image-niederlande-kultur {
    background: linear-gradient(135deg, rgba(176, 224, 230, 0.2), rgba(135, 206, 235, 0.2)), url('../images/Niederländische Parkkultur und Reiseziele.jpg') center center / cover no-repeat;
}

.content-image-reiseplanung {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(176, 224, 230, 0.2)), url('../images/Reiseplanung.jpg') center center / cover no-repeat;
}

.content-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.content-text p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
}


.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}


.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.feature-item-extreme .feature-icon {
    background-image: url('../images/Extreme Attraktionen.jpg');
}

.feature-item-familien .feature-icon {
    background-image: url('../images/Familienparks.jpg');
}

.feature-item-themen .feature-icon {
    background-image: url('../images/Themenparks.jpg');
}

.feature-item-natur .feature-icon {
    background-image: url('../images/Naturparks.jpg');
}

.feature-icon::before {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.3), rgba(255, 182, 193, 0.3));
    position: absolute;
    top: 0;
    left: 0;
}

.feature-icon::after {
    display: none;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, #F8F9FA 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #E5E7EB;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sky-blue);
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.1);
}

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

.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
}

.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-item {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sky-blue);
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.map-container {
    margin-top: 3rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.footer {
    background: linear-gradient(135deg, var(--text-dark), #34495E);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--sky-blue);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--white), #F8F9FA);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--sky-blue);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: var(--text-dark);
    line-height: 1.6;
}

.cookie-content a {
    color: var(--sky-blue);
    text-decoration: underline;
}

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

.accordion {
    margin: 2rem 0;
}

.accordion-item {
    background: var(--white);
    border-radius: var(--border-radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: var(--shadow-medium);
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--sky-blue), var(--light-blue));
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: linear-gradient(135deg, var(--light-blue), var(--sky-blue));
}

.accordion-icon {
    transition: transform 0.3s ease;
    font-size: 1.5rem;
    font-weight: bold;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 1.5rem;
}

.accordion-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.accordion-content ul {
    list-style: none;
    padding-left: 0;
}

.accordion-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.accordion-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--sky-blue);
    font-weight: bold;
    font-size: 1.5rem;
}

.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

table thead {
    background: linear-gradient(135deg, var(--sky-blue), var(--light-blue));
    color: var(--white);
}

table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

table td {
    padding: 1rem;
    border-bottom: 1px solid #E5E7EB;
    color: var(--text-medium);
}

table tbody tr {
    transition: background 0.3s ease;
}

table tbody tr:hover {
    background: rgba(135, 206, 235, 0.1);
}

table tbody tr:last-child td {
    border-bottom: none;
}

.reviews-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #F8F9FA 0%, var(--white) 100%);
}

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

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-rating {
    color: var(--accent-color);
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.review-text {
    color: var(--text-medium);
    line-height: 1.8;
    font-style: italic;
}

.review-location {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
    color: var(--text-light);
    font-size: 0.9rem;
}

.article-section {
    padding: 5rem 0;
}

.article-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.article-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.article-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--sky-blue), var(--light-blue));
    color: var(--white);
}

.article-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.article-meta {
    font-size: 0.9rem;
    opacity: 0.9;
}

.article-body {
    padding: 2rem;
}

.article-body p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-body h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.article-body ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.article-body li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.8;
}

.article-body li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--sky-blue);
    font-weight: bold;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-medium);
    font-size: 1.1rem;
    font-weight: 500;
}

.comparison-table {
    margin: 3rem 0;
}

.comparison-table table th:first-child {
    width: 30%;
}

.timeline {
    position: relative;
    padding: 2rem 0;
    margin: 2rem 0;
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--sky-blue);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--sky-blue);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 20px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(180deg, var(--sky-blue), var(--light-blue));
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
}

.timeline-date {
    color: var(--sky-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-title {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-text {
    color: var(--text-medium);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 4rem 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .countries-grid,
    .parks-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-image,
    .park-image {
        height: 220px;
    }

    .content-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .content-image {
        height: 300px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    body.menu-open {
        overflow: hidden;
    }

    .map-container iframe {
        height: 300px;
    }

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

    .table-container {
        overflow-x: scroll;
    }

    table {
        min-width: 600px;
    }

    .timeline-item {
        padding-left: 2rem;
    }
}

