/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

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

/* Color Variables - Warm mountain colors avoiding gray, pink, blue */
:root {
    --primary-color: #d2691e;          /* Orange/Burnt Orange */
    --secondary-color: #8b4513;        /* Saddle Brown */
    --accent-color: #ff6347;           /* Tomato Red */
    --success-color: #228b22;          /* Forest Green */
    --warning-color: #ffa500;          /* Orange */
    --danger-color: #dc143c;           /* Crimson */
    --dark-color: #2f1b14;             /* Dark Brown */
    --light-color: #f5f5dc;            /* Beige */
    --white-color: #ffffff;
    --text-color: #2c2c2c;
    --light-text: #5d4037;             /* Brown text */
    --border-color: #deb887;           /* Burlywood */
    --shadow-color: rgba(139, 69, 19, 0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.3);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
    border-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 27, 20, 0.4);
}

.btn-outline {
    background-color: var(--white-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.2);
    font-weight: 600;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.4);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-text i {
    font-size: 1.5rem;
    color: var(--warning-color);
}

.cookie-text p {
    margin: 0;
    color: var(--white-color);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background-color: var(--white-color);
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cookie-modal-header h3 {
    margin: 0;
    color: var(--dark-color);
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.cookie-switch {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.cookie-switch input[type="checkbox"] {
    display: none;
}

.slider {
    position: relative;
    width: 50px;
    height: 24px;
    background-color: #ccc;
    border-radius: 24px;
    transition: 0.3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white-color);
    border-radius: 50%;
    transition: 0.3s;
}

.cookie-switch input:checked + .slider {
    background-color: var(--primary-color);
}

.cookie-switch input:checked + .slider:before {
    transform: translateX(26px);
}

.cookie-switch input:disabled + .slider {
    background-color: var(--success-color);
    opacity: 0.7;
}

.cookie-info {
    flex: 1;
}

.cookie-info strong {
    color: var(--dark-color);
}

.cookie-info p {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    color: var(--light-text);
}

.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

/* Header */
.header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-brand i {
    font-size: 2rem;
}

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

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

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white-color);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--white-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background-color: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header h2 i {
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 5px;
}

.feature h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 2rem;
}

.service-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

/* Resorts Section */
.resorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.resort-card {
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-color);
    transition: transform 0.3s ease;
}

.resort-card:hover {
    transform: translateY(-8px);
}

.resort-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.resort-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.resort-card:hover .resort-image img {
    transform: scale(1.05);
}

.resort-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.resort-content {
    padding: 25px;
}

.resort-info {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-text);
    font-size: 0.9rem;
}

.info-item i {
    color: var(--primary-color);
}

.resort-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.feature-tag {
    background-color: var(--light-color);
    color: var(--dark-color);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
}

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

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.stat-content h3 {
    font-size: 3rem;
    color: var(--white-color);
    margin-bottom: 0.5rem;
}

.stat-content p {
    font-size: 1.1rem;
    color: var(--white-color);
    margin: 0;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-color);
    border-left: 4px solid var(--primary-color);
}

.review-header {
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.reviewer-details h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: var(--warning-color);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
    color: var(--white-color);
}

.newsletter-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-text h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.newsletter-text h2 i {
    color: var(--warning-color);
}

.newsletter-text p {
    color: var(--white-color);
}

.newsletter-form {
    margin-top: 40px;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.form-group input[type="email"] {
    flex: 1;
    min-width: 300px;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
}

.form-check input[type="checkbox"] {
    margin: 0;
}

.form-check a {
    color: var(--warning-color);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--light-text);
    margin: 0;
}

/* New Stylish Contact Form */
.contact-form-wrapper {
    background: linear-gradient(135deg, var(--white-color) 0%, var(--light-color) 100%);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 40px var(--shadow-color);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.contact-form-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    padding: 20px 25px;
    text-align: center;
}

.contact-form-header h3 {
    margin: 0 0 8px 0;
    font-size: 1.4rem;
    color: var(--white-color);
}

.contact-form-header h3 i {
    margin-right: 10px;
}

.contact-form-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
    color: var(--white-color);
}

.contact-form {
    padding: 25px;
    background-color: transparent;
    box-shadow: none;
}

.form-row-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row-compact input,
.form-row-compact select {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--white-color);
}

.form-row-compact input:focus,
.form-row-compact select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(210, 105, 30, 0.1);
}

.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--white-color);
    resize: vertical;
    min-height: 80px;
    margin-bottom: 15px;
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(210, 105, 30, 0.1);
}

.form-consent-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: rgba(210, 105, 30, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(210, 105, 30, 0.2);
}

.form-consent-compact input[type="checkbox"] {
    margin: 0;
    width: auto;
    padding: 0;
}

.form-consent-compact label {
    font-size: 0.85rem;
    line-height: 1.3;
    color: var(--text-color);
}

.form-consent-compact a {
    color: var(--primary-color);
    font-weight: 500;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    border-radius: 12px;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 20px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-brand i {
    font-size: 2rem;
}

.footer-section h3 {
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--white-color);
    margin-bottom: 15px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white-color);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--white-color);
    margin: 5px 0;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid var(--secondary-color);
    padding-top: 20px;
    text-align: center;
    color: var(--white-color);
}

/* Thanks Page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-color), var(--white-color));
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    background-color: var(--success-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    color: var(--success-color);
    font-size: 3rem;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 40px;
}

.thanks-details {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    text-align: left;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.social-follow {
    margin-top: 40px;
}

.social-follow p {
    margin-bottom: 20px;
    color: var(--text-color);
}

/* Legal Pages */
.legal-section {
    padding: 100px 0;
    min-height: 80vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.legal-header h1 i {
    color: var(--primary-color);
}

.last-updated {
    color: var(--light-text);
    font-style: italic;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.legal-content h3 {
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}

.contact-box, .definition-box, .warning-box {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
}

.warning-box {
    border-left-color: var(--warning-color);
    background-color: #fff8dc;
}

.legal-footer {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.legal-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Cookie Policy Specific Styles */
.cookie-type {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.cookie-type h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cookie-details {
    background-color: var(--light-color);
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
}

.cookies-table {
    overflow-x: auto;
    margin: 20px 0;
}

.cookies-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.cookies-table th,
.cookies-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 600;
}

.cookies-table tr:hover {
    background-color: var(--light-color);
}

.management-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.option {
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.option h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.external-cookies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.provider {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.provider h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.provider a {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Terms Specific Styles */
.refund-table {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin: 20px 0;
}

.refund-table h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px var(--shadow-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row,
    .form-grid,
    .form-row-compact {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .thanks-actions,
    .legal-actions {
        flex-direction: column;
        align-items: center;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

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

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

    .form-group {
        flex-direction: column;
    }

    .form-group input[type="email"] {
        min-width: auto;
    }

    .legal-header h1 {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 10px;
    }

    .management-options {
        grid-template-columns: 1fr;
    }

    .external-cookies {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .btn {
        display: none;
    }

    .legal-section {
        padding: 20px 0;
    }
}
