:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --snow-white: #f8fafc;
    --ice-blue: #e8f4f8;
    --mountain-dark: #1e3a5f;
    --text-color: #2d3748;
    --text-light: #718096;
    --gradient-primary: linear-gradient(135deg, #1a5f7a 0%, #2c3e50 100%);
    --gradient-snow: linear-gradient(180deg, #e8f4f8 0%, #f8fafc 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background: var(--gradient-snow);
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.3;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-toggler {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.toggler-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    padding: 10px 18px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: var(--ice-blue);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    padding: 10px 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    list-style: none;
    margin: 5px 0 0;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: var(--ice-blue);
    color: var(--primary-color);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--ice-blue);
}

.mobile-menu-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    line-height: 1;
}

.mobile-nav {
    list-style: none;
    padding: 20px;
}

.mobile-nav li {
    margin-bottom: 5px;
}

.mobile-nav a {
    display: block;
    padding: 12px 15px;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-nav a:hover {
    background: var(--ice-blue);
    color: var(--primary-color);
}

.mobile-dropdown-toggle {
    display: block;
    padding: 12px 15px;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
}

.mobile-dropdown-menu {
    list-style: none;
    padding-left: 20px;
    display: none;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

main {
    padding-top: 80px;
    min-height: calc(100vh - 300px);
}

.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30L30 0z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-title {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-btn {
    display: inline-block;
    background: #fff;
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.hero-image-container {
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
}

.resort-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
}

.resort-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.resort-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.resort-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.resort-card:hover .resort-card-image img {
    transform: scale(1.05);
}

.resort-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
}

.resort-card-content {
    padding: 30px;
}

.resort-card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.resort-card-text {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.resort-card-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.resort-stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.resort-stat-icon {
    width: 20px;
    height: 20px;
}

.resort-stat-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--text-light);
}

.resort-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.resort-card-link:hover {
    gap: 12px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

.info-section {
    background: #fff;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.info-image img {
    width: 100%;
    height: auto;
    display: block;
}

.info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.info-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.info-list {
    list-style: none;
    margin: 30px 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
}

.info-list-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.article-header {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='2' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E");
}

.article-header-content {
    position: relative;
    z-index: 2;
}

.article-breadcrumb {
    margin-bottom: 20px;
}

.article-breadcrumb a,
.article-breadcrumb span {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.article-breadcrumb a:hover {
    color: #fff;
}

.article-title {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.article-content {
    padding: 80px 0;
}

.article-main {
    max-width: 800px;
}

.article-main h2 {
    font-size: 2rem;
    margin: 50px 0 25px;
}

.article-main h3 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
}

.article-main p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.article-main ul,
.article-main ol {
    margin: 25px 0;
    padding-left: 25px;
}

.article-main li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.article-image {
    margin: 40px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-image figcaption {
    padding: 15px 20px;
    background: var(--ice-blue);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--ice-blue);
}

.sidebar-stats {
    list-style: none;
}

.sidebar-stats li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--ice-blue);
    font-family: 'Open Sans', sans-serif;
}

.sidebar-stats li:last-child {
    border-bottom: none;
}

.sidebar-stats span:first-child {
    color: var(--text-light);
}

.sidebar-stats span:last-child {
    font-weight: 600;
    color: var(--text-color);
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 10px;
}

.sidebar-links a {
    display: block;
    padding: 12px 15px;
    background: var(--ice-blue);
    border-radius: 8px;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
}

.sidebar-links a:hover {
    background: var(--primary-color);
    color: #fff;
}

.info-box {
    background: var(--ice-blue);
    border-left: 4px solid var(--primary-color);
    padding: 25px 30px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin: 30px 0;
}

.info-box h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-box p {
    margin: 0;
    font-size: 0.95rem;
}

.page-header {
    background: var(--gradient-primary);
    padding: 120px 0 60px;
    text-align: center;
}

.page-title {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow-soft);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--ice-blue);
}

.contact-details li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--ice-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 24px;
    height: 24px;
}

.contact-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.contact-text p,
.contact-text a {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-map {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    min-height: 500px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.policy-section {
    padding: 80px 0;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--border-radius);
    padding: 60px;
    box-shadow: var(--shadow-soft);
}

.policy-content h2 {
    font-size: 1.8rem;
    margin: 50px 0 20px;
    padding-top: 30px;
    border-top: 1px solid var(--ice-blue);
}

.policy-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.policy-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.policy-content li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--text-light);
}

.site-footer {
    background: var(--secondary-color);
    color: #fff;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand img {
    width: 40px;
    height: 40px;
}

.footer-brand span {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.cookie-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.cookie-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: var(--mountain-dark);
}

.cookie-btn-reject {
    background: var(--ice-blue);
    color: var(--text-color);
}

.cookie-btn-reject:hover {
    background: #d0e8ef;
}

.cookie-btn-settings {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cookie-btn-settings:hover {
    background: var(--primary-color);
    color: #fff;
}

.cookie-settings-panel {
    display: none;
    padding: 0 30px 25px;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid var(--ice-blue);
}

.cookie-settings-panel.active {
    display: block;
}

.cookie-setting-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--ice-blue);
}

.cookie-setting-item:last-of-type {
    border-bottom: none;
}

.cookie-setting-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.cookie-setting-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.cookie-setting-item small {
    display: block;
    margin-top: 5px;
    margin-left: 30px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.cookie-btn-save {
    margin-top: 20px;
    background: var(--primary-color);
    color: #fff;
}

.cookie-btn-save:hover {
    background: var(--mountain-dark);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.data-table th,
.data-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--ice-blue);
}

.data-table th {
    background: var(--ice-blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-color);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover {
    background: var(--snow-white);
}

.difficulty-easy {
    display: inline-block;
    background: #4CAF50;
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
}

.difficulty-medium {
    display: inline-block;
    background: #2196F3;
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
}

.difficulty-hard {
    display: inline-block;
    background: #f44336;
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .navbar-toggler {
        display: flex;
    }
    
    .navbar-collapse {
        display: none;
    }
    
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-image-container {
        margin-top: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .article-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .article-header {
        padding: 100px 0 50px;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .article-content .row {
        flex-direction: column-reverse;
    }
    
    .article-sidebar {
        position: static;
        margin-bottom: 40px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .contact-info {
        padding: 30px;
    }
    
    .policy-content {
        padding: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .resort-card-content {
        padding: 20px;
    }
    
    .resort-card-title {
        font-size: 1.3rem;
    }
    
    .article-main h2 {
        font-size: 1.6rem;
    }
    
    .article-main h3 {
        font-size: 1.3rem;
    }
    
    .cookie-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}
