/* Azure Crest Reisen - Main Stylesheet */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

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

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
}

.btn-primary:hover {
    background-color: #1e3f73;
    border-color: #1e3f73;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #2c5aa0;
    border-color: #2c5aa0;
}

.btn-secondary:hover {
    background-color: #2c5aa0;
    color: white;
}

.btn-tertiary {
    background-color: #f8f9fa;
    color: #333;
    border-color: #dee2e6;
}

.btn-tertiary:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

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

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

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

.cookie-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cookie-content p {
    margin-bottom: 0;
    opacity: 0.9;
}

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

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-buttons .btn-primary {
    background: white;
    color: #2c5aa0;
}

.cookie-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-buttons .btn-tertiary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.cookie-modal.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.modal-header h3 {
    margin: 0;
}

#close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 6px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 8px;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    transform: scale(1.2);
}

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

.modal-footer {
    border-top: 1px solid #eee;
    padding-top: 15px;
    text-align: right;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #2c5aa0;
}

.nav-logo .logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: #333;
    padding: 10px 0;
    position: relative;
}

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

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8faff 0%, #e8f4f8 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    text-align: center;
}

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

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

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

.section-header h2 {
    color: #2c5aa0;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8faff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-icon {
    width: 60px;
    height: 60px;
    background: #2c5aa0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.about-text h2 {
    color: #2c5aa0;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

.stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat h3 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 5px;
}

.stat p {
    color: #666;
    margin: 0;
    font-weight: 600;
}

.about-features h3 {
    color: #2c5aa0;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 12px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #eee;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list .fas {
    color: #2c5aa0;
    font-size: 1.1rem;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: #2c5aa0;
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.newsletter-form .form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-form button {
    background: white;
    color: #2c5aa0;
    border: none;
    padding: 15px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.privacy-note {
    opacity: 0.8;
    font-size: 0.9rem;
}

.privacy-note a {
    color: white;
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    background: #2c5aa0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.testimonial-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

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

.testimonial-card {
    background: #f8faff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: #2c5aa0;
    opacity: 0.3;
}

.stars {
    margin-bottom: 20px;
}

.stars .fas {
    color: #ffc107;
    margin-right: 2px;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: #2c5aa0;
    display: block;
    margin-bottom: 5px;
}

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

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8faff;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: #2c5aa0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.contact-info h2 {
    color: #2c5aa0;
    margin-bottom: 20px;
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 40px;
}

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

.contact-item .fas {
    color: #2c5aa0;
    font-size: 1.2rem;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.contact-item p {
    margin: 0;
    color: #666;
}

.social-links h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

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

.social-icons a:hover {
    background: #1e3f73;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #2c5aa0;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    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: #2c5aa0;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

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

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: #2c5aa0;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    opacity: 0.9;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: white;
    color: #2c5aa0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright,
.footer-contact {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    background: white;
}

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

.legal-header h1 {
    color: #2c5aa0;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.last-updated {
    color: #666;
    font-style: italic;
}

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

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #2c5aa0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f7ff;
}

.legal-section h3,
.legal-section h4 {
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-section p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 15px;
    padding-left: 30px;
}

.legal-section li {
    margin-bottom: 8px;
    color: #555;
}

.contact-info {
    background: #f8faff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info strong {
    color: #2c5aa0;
}

/* Blog Styles */
.blog-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8faff 0%, #e8f4f8 100%);
    text-align: center;
}

.blog-header-content h1 {
    color: #2c5aa0;
    font-size: 3rem;
    margin-bottom: 20px;
}

.blog-header-content .lead {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.blog-articles {
    padding: 80px 0;
    background: white;
}

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

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

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

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

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

.blog-card.featured .blog-image {
    height: auto;
}

.article-image,
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2c5aa0;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 30px;
}

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

.blog-meta .fas {
    margin-right: 5px;
    color: #2c5aa0;
}

.blog-content h2 {
    margin-bottom: 15px;
}

.blog-content h2 a {
    color: #333;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: #2c5aa0;
}

.blog-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    background: #f0f7ff;
    color: #2c5aa0;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.read-more {
    color: #2c5aa0;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 10px;
}

/* Blog Newsletter */
.blog-newsletter {
    padding: 60px 0;
    background: #f8faff;
    text-align: center;
}

.blog-newsletter .newsletter-content h2 {
    color: #2c5aa0;
    margin-bottom: 15px;
}

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

.blog-newsletter .newsletter-form input {
    background: white;
    border: 2px solid #e1e5e9;
    color: #333;
}

.blog-newsletter .newsletter-form button {
    background: #2c5aa0;
    color: white;
}

/* Blog Related */
.blog-related {
    padding: 60px 0;
    background: white;
}

.blog-related h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 40px;
}

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

.related-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8faff;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.related-card .fas {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.related-card h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
}

.related-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Article Pages */
.article-header {
    padding: 120px 0 40px;
    background: #f8faff;
}

.breadcrumb {
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #2c5aa0;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.category {
    background: #2c5aa0;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 600;
}

.date,
.read-time {
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-header h1 {
    color: #2c5aa0;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.article-content {
    padding: 60px 0;
    background: white;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.article-text {
    line-height: 1.8;
}

.article-text .lead {
    font-size: 1.2rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 30px;
}

.article-text h2 {
    color: #2c5aa0;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.article-text h3 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-text p {
    margin-bottom: 20px;
    color: #555;
}

.article-text blockquote {
    background: #f8faff;
    border-left: 4px solid #2c5aa0;
    margin: 30px 0;
    padding: 20px 30px;
    font-style: italic;
}

.article-text blockquote p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.article-text cite {
    display: block;
    text-align: right;
    font-weight: 600;
    color: #2c5aa0;
    margin-top: 10px;
}

.article-text ul,
.article-text ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.article-text li {
    margin-bottom: 8px;
    color: #555;
}

.tip-box {
    background: #f0f7ff;
    border: 1px solid #d1ecf1;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.tip-box h4 {
    color: #2c5aa0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tip-box p {
    margin-bottom: 10px;
}

.tip-box ul {
    margin-bottom: 0;
}

.route-info,
.ski-area-info {
    background: #f8faff;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.route-info h4,
.ski-area-info h4 {
    color: #2c5aa0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.route-details,
.ski-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.route-detail,
.ski-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 6px;
}

.route-detail .fas,
.ski-detail .fas {
    color: #2c5aa0;
    width: 20px;
}

.article-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.article-tags h4 {
    color: #2c5aa0;
    margin-bottom: 15px;
}

.related-articles {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #f0f7ff;
}

.related-articles h3 {
    color: #2c5aa0;
    margin-bottom: 30px;
}

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

.related-articles .related-card {
    background: #f8faff;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.related-articles .related-card:hover {
    transform: translateY(-3px);
}

.related-articles .related-card h4 {
    margin-bottom: 10px;
}

.related-articles .related-card h4 a {
    color: #2c5aa0;
}

.related-articles .related-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.article-cta {
    background: #2c5aa0;
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-top: 60px;
    text-align: center;
}

.cta-content h3 {
    margin-bottom: 15px;
    color: white;
}

.cta-content p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cta-buttons .btn-primary {
    background: white;
    color: #2c5aa0;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

/* Thank You Page */
.thank-you-page {
    padding: 120px 0 80px;
    background: white;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 30px;
}

.thank-you-content h1 {
    color: #2c5aa0;
    margin-bottom: 20px;
}

.thank-you-content .lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.thank-you-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: #f8faff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
}

.info-card .fas {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.info-card h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    margin: 0;
}

.next-steps {
    margin-bottom: 60px;
}

.next-steps h2 {
    color: #2c5aa0;
    margin-bottom: 40px;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2c5aa0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step h4 {
    color: #2c5aa0;
    margin-bottom: 10px;
}

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

.cta-section {
    background: #f8faff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.cta-section h2 {
    color: #2c5aa0;
    margin-bottom: 15px;
}

.cta-section p {
    color: #666;
    margin-bottom: 25px;
}

.contact-help {
    margin-bottom: 50px;
}

.contact-help h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
}

.contact-help p {
    color: #666;
    margin-bottom: 20px;
}

.contact-options {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #1e3f73;
}

.popular-tours {
    padding: 60px 0;
    background: #f8faff;
}

.popular-tours h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 40px;
}

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

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

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

.tour-card h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
}

.tour-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Cookie Settings Button */
#open-cookie-settings {
    margin: 20px 0;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

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

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

/* Smooth scrolling offset for fixed header */
html {
    scroll-padding-top: 70px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal,
    .footer {
        display: none !important;
    }
    
    .article-content,
    .legal-page {
        padding-top: 0 !important;
    }
}
