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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c0392b;
}

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

.btn-primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    color: white;
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background: #7f8c8d;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.btn-outline:hover {
    background: #e74c3c;
    color: white;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn i {
    margin-right: 8px;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.nav-brand i {
    margin-right: 10px;
    font-size: 1.8rem;
}

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

.nav-menu a {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #e74c3c;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

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

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* About Preview Section */
.about-preview {
    padding: 5rem 0;
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat i {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: #f8f9fa;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: #f39c12;
    margin-right: 2px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

.reviewer {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.reviewer strong {
    color: #2c3e50;
    display: block;
}

.reviewer span {
    color: #666;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.newsletter h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 0.5rem;
}

.form-group input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: 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 h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.social-links a:hover {
    background: #e74c3c;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-info i {
    margin-right: 10px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid #e74c3c;
}

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

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

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

.cookie-buttons .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cookie-buttons .btn-primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.cookie-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

.cookie-buttons .btn-secondary {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(149, 165, 166, 0.3);
}

.cookie-buttons .btn-secondary:hover {
    background: linear-gradient(135deg, #7f8c8d, #6c7b7d);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(149, 165, 166, 0.4);
}

.cookie-buttons .btn-outline {
    background: transparent;
    border: 2px solid #ecf0f1;
    color: #ecf0f1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-buttons .btn-outline:hover {
    background: #ecf0f1;
    color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(236, 240, 241, 0.3);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-category {
    margin: 1rem 0;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Article Styles */
.article-header {
    background: #f8f9fa;
    padding: 2rem 0;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-subtitle {
    font-size: 1.25rem;
    color: #666;
    font-weight: 400;
}

.article-content {
    padding: 3rem 0;
}

.article-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.article-body {
    max-width: none;
}

.article-image {
    text-align: center;
    margin: 2rem 0;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.article-icon-large {
    font-size: 4rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.image-caption {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 2rem;
}

/* Sidebar */
.article-sidebar {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    margin-bottom: 2rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.related-article {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.related-article:hover {
    background: white;
}

/* Legal Content */
.legal-content {
    padding: 3rem 0;
    background: white;
}

.legal-header {
    margin-bottom: 3rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.legal-text h3 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.contact-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.contact-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

/* Thanks Page */
.thanks-content {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
}

.thanks-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 2rem;
}

.thanks-info {
    margin: 3rem 0;
}

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

.step {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
}

.step i {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.quick-links {
    margin: 3rem 0;
}

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

.quick-link {
    display: block;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.quick-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.quick-link i {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.quick-link h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.quick-link p {
    color: #666;
    font-size: 0.9rem;
}

.thanks-social {
    margin-top: 3rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #333;
}

.social-link-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #e74c3c;
}

/* Contact Page Specific */
.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card,
.opening-hours-card,
.social-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.contact-item i {
    color: #e74c3c;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.hours-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    color: #333;
}

.social-link:hover {
    background: #f8f9fa;
    color: #e74c3c;
}

.map-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.map-container {
    margin-top: 2rem;
}

.map-placeholder {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed #ddd;
}

.map-placeholder i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.map-info {
    margin-top: 2rem;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.map-info ul {
    list-style: none;
    margin-top: 1rem;
}

.map-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.map-info i {
    color: #e74c3c;
    width: 20px;
}

/* Services Page Specific */
.services-overview {
    padding: 3rem 0;
    background: white;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-header .service-icon {
    width: 60px;
    height: 60px;
}

.service-content {
    padding: 2rem;
}

.service-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.service-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-content li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.service-content li i {
    color: #27ae60;
    width: 16px;
}

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

.package {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.package h5 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.package p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #e74c3c;
}

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

.destination {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.destination i {
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.destination h5 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.destination p {
    color: #666;
    font-size: 0.9rem;
}

.individual-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.individual-service {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.individual-service i {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.individual-service h5 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.individual-service p {
    color: #666;
    font-size: 0.9rem;
}

.additional-services {
    padding: 3rem 0;
    background: #f8f9fa;
}

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

.additional-service {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.additional-service i {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.booking-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

/* About Page Specific */
.about-content {
    padding: 3rem 0;
    background: white;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.about-story {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.stat-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.stat-card i {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.stat-card h4 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #666;
    font-size: 0.9rem;
}

.team-section {
    margin: 3rem 0;
}

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

.team-member {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.team-avatar {
    font-size: 4rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.team-member h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #e74c3c;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member p {
    color: #666;
    font-size: 0.9rem;
}

.values-section {
    margin: 3rem 0;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.value-card i {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    font-size: 0.9rem;
}

.cta-section {
    padding: 3rem 0;
    background: #f8f9fa;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Page Specific */
.blog-content {
    padding: 3rem 0;
    background: white;
}

.blog-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-icon {
    font-size: 3rem;
    color: #e74c3c;
}

.blog-content-card {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-category {
    background: #e74c3c;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.blog-content-card h3 {
    margin-bottom: 1rem;
}

.blog-content-card h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.blog-content-card h3 a:hover {
    color: #e74c3c;
}

.blog-content-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.read-more {
    color: #e74c3c;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.75rem;
}

.newsletter-blog {
    padding: 3rem 0;
    background: #f8f9fa;
}

/* Blog Article Specific Styles */
.route-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.stat-item i {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat-item h4 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.stat-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.route-stations {
    margin: 2rem 0;
}

.station {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.station-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.station-content {
    flex: 1;
}

.station-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.station-content h3 i {
    color: #e74c3c;
}

.station-highlights {
    margin-top: 1.5rem;
}

.station-highlights ul {
    list-style: none;
    margin-top: 0.5rem;
}

.station-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.station-highlights li i {
    color: #27ae60;
    width: 16px;
}

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

.tip-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.tip-category h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tip-category h3 i {
    color: #e74c3c;
}

.tip-category ul {
    list-style: none;
}

.tip-category li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.tip-category li::before {
    content: '•';
    color: #e74c3c;
    position: absolute;
    left: 0;
}

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

.season {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.season h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.season h3 i {
    color: #e74c3c;
}

.season p {
    color: #666;
    font-size: 0.9rem;
}

.conclusion {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.conclusion h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.conclusion h2 i {
    color: #e74c3c;
}

/* Additional Blog Article Styles */
.accommodation-list {
    margin: 2rem 0;
}

.accommodation {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.accommodation-header {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accommodation-header h3 {
    margin: 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.accommodation-header h3 i {
    color: #e74c3c;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating i {
    color: #f39c12;
}

.rating span {
    color: #666;
    font-size: 0.9rem;
}

.accommodation-content {
    padding: 2rem;
}

.features {
    margin: 1.5rem 0;
}

.features h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.features ul {
    list-style: none;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.features li i {
    color: #27ae60;
    width: 16px;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.includes {
    color: #666;
    font-size: 0.9rem;
}

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

.criterion {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.criterion i {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.criterion h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.criterion p {
    color: #666;
    font-size: 0.9rem;
}

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

.special-accommodation {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.special-accommodation i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.special-accommodation h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.special-accommodation p {
    color: #666;
    margin-bottom: 1.5rem;
}

.highlights {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.highlight {
    background: #e74c3c;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

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

.tip-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.tip-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tip-section h3 i {
    color: #e74c3c;
}

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

.tip-section li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.tip-section li::before {
    content: '•';
    color: #e74c3c;
    position: absolute;
    left: 0;
}

.value-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-tip {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.value-tip i {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.value-tip h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-tip p {
    color: #666;
    font-size: 0.9rem;
}

/* Fairy Tale Locations Styles */
.grimm-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.fact {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
}

.fact i {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.fact h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.fact p {
    color: #666;
    font-size: 0.9rem;
}

.fairytale-locations {
    margin: 2rem 0;
}

.location {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 3rem;
    overflow: hidden;
}

.location-header {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location-header h3 {
    margin: 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-header h3 i {
    color: #e74c3c;
}

.fairytale-tag {
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.location-content {
    padding: 2rem;
}

.location-content h4 {
    color: #e74c3c;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.location-highlights {
    margin: 2rem 0;
}

.location-highlights ul {
    list-style: none;
}

.location-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.location-highlights li i {
    color: #f39c12;
    width: 16px;
}

.visit-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.visit-info h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.visit-info p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

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

.events-calendar {
    margin: 2rem 0;
}

.event-season {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.event-season h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-season h3 i {
    color: #e74c3c;
}

.event-season ul {
    list-style: none;
}

.event-season li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    position: relative;
}

.event-season li::before {
    content: '•';
    color: #e74c3c;
    position: absolute;
    left: 0;
}

.event-season li strong {
    color: #2c3e50;
}

.photo-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo-tip {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.photo-tip i {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.photo-tip h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.photo-tip p {
    color: #666;
    font-size: 0.9rem;
}

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

.prep-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.prep-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prep-section h3 i {
    color: #e74c3c;
}

.prep-section p {
    color: #666;
    font-size: 0.9rem;
}

/* Travel Time Specific Styles */
.weather-overview {
    margin: 2rem 0;
}

.weather-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.weather-stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
}

.weather-stat i {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.weather-stat h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.weather-stat p {
    color: #666;
    font-size: 0.9rem;
}

.season-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.season-pros,
.season-cons {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.season-pros h3 {
    color: #27ae60;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.season-cons h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.season-pros ul,
.season-cons ul {
    list-style: none;
}

.season-pros li,
.season-cons li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.season-pros li i {
    color: #27ae60;
    width: 16px;
}

.season-cons li i {
    color: #e74c3c;
    width: 16px;
}

.season-highlights {
    margin: 2rem 0;
}

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

.highlight {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.highlight i {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.highlight h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.highlight p {
    color: #666;
    font-size: 0.9rem;
}

.travel-types {
    margin: 2rem 0;
}

.travel-type {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.travel-type h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.travel-type h3 i {
    color: #e74c3c;
}

.recommendation {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.recommendation h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.recommendation p {
    margin-bottom: 0.5rem;
}

.events-timeline {
    margin: 2rem 0;
}

.event-month {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.event-month h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-month h3 i {
    color: #e74c3c;
}

.event-month ul {
    list-style: none;
}

.event-month li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    position: relative;
}

.event-month li::before {
    content: '•';
    color: #e74c3c;
    position: absolute;
    left: 0;
}

.event-month li strong {
    color: #2c3e50;
}

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

.seasonal-tip {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.seasonal-tip h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seasonal-tip h3 i {
    color: #e74c3c;
}

.seasonal-tip ul {
    list-style: none;
}

.seasonal-tip li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.seasonal-tip li::before {
    content: '•';
    color: #e74c3c;
    position: absolute;
    left: 0;
}

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

.price-season {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.price-season h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-season h3 i {
    color: #e74c3c;
}

.price-details p {
    margin-bottom: 0.5rem;
    color: #666;
}

.price-details strong {
    color: #2c3e50;
}

.important-notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: 8px;
}

.note i {
    color: #f39c12;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.note h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.note p {
    color: #555;
    font-size: 0.9rem;
}

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

.recommendation-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.recommendation-box h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.recommendation-box h3 i {
    color: #e74c3c;
}

.recommendation-box p {
    color: #666;
    font-size: 0.9rem;
}

.recommendation-box strong {
    color: #e74c3c;
}

/* Cookie Page Specific */
.cookie-table {
    margin: 2rem 0;
}

.cookie-table h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

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

.cookie-settings-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
}

.browser-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.browser-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.browser-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.browser-item h4 i {
    color: #e74c3c;
}

.browser-item p {
    color: #666;
    font-size: 0.9rem;
}

/* About Hero Styles */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}

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

.about-hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
}

.stat-item span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-svg {
    width: 100%;
    max-width: 200px;
    height: auto;
}

/* Story Compact */
.story-compact {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* Team Compact */
.team-compact {
    padding: 4rem 0;
    background: white;
}

.team-compact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.team-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: background 0.3s ease;
}

.team-card:hover {
    background: #e9ecef;
}

.team-avatar {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.team-card h4 {
    margin-bottom: 0.5rem;
}

.team-card span {
    color: #666;
    font-size: 0.9rem;
}

/* Values Compact */
.values-compact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.values-compact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

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

.value-item {
    text-align: center;
    padding: 1rem;
}

.value-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.value-item span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}

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

.contact-hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Quick Contact */
.quick-contact {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.contact-link {
    color: #e74c3c;
    font-weight: 600;
    text-decoration: none;
}

.contact-link:hover {
    color: #c0392b;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    width: 100%;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input {
    display: none;
}

.checkbox-label input:checked + .checkmark {
    background: #e74c3c;
    border-color: #e74c3c;
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Privacy Agreement */
.privacy-agreement {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e74c3c;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
}

.privacy-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.privacy-header i {
    font-size: 1.25rem;
}

.privacy-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.privacy-content p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.privacy-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label.optional {
    opacity: 0.8;
}

.checkbox-label.optional:hover {
    opacity: 1;
}

.checkbox-text {
    color: #555;
}

.checkbox-text a {
    color: #e74c3c;
    text-decoration: underline;
    font-weight: 500;
}

.checkbox-text a:hover {
    color: #c0392b;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
    border-color: #e74c3c;
}

.checkbox-label input {
    display: none;
}

.checkbox-label input:checked + .checkmark {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-color: #e74c3c;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* FAQ Compact */
.faq-compact {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq-compact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

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

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

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

    .nav-menu li {
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-menu a {
        padding: 1rem 20px;
        display: block;
    }

    .nav-toggle {
        display: block;
    }

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

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

    .about-hero-content,
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .story-grid,
    .contact-grid,
    .team-cards,
    .values-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

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

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

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

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

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

    .article-content .container {
        grid-template-columns: 1fr;
    }

    .about-story {
        grid-template-columns: 1fr;
    }

    .season-details {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .contact-options {
        flex-direction: column;
    }

    .social-links-large {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero {
        min-height: 60vh;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .feature-card,
    .service-card,
    .review-card {
        padding: 1.5rem;
    }

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

    .stat {
        padding: 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .nav-toggle,
    .btn,
    .newsletter,
    .cta-section,
    .booking-cta {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: black;
        background: white;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        color: black;
    }

    .hero {
        background: none;
        color: black;
        padding: 2rem 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #000;
    }
    
    .btn-outline {
        border-width: 2px;
    }
    
    a {
        text-decoration: underline;
    }
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}

.btn:focus,
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.3);
}

/* Skip to content link for screen readers */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #e74c3c;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-to-content:focus {
    top: 6px;
}
