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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafaf8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #8b6f47;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #6d5735;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-magazine {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #8b6f47;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8b6f47;
}

.ad-disclosure {
    background-color: #f5f5f5;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.hero-magazine {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: #8b6f47;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.magazine-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.intro-section {
    padding: 80px 0;
}

.intro-columns {
    display: flex;
    gap: 60px;
}

.intro-col-left {
    flex: 1;
}

.intro-col-right {
    flex: 1;
}

.intro-col-left h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.2;
}

.intro-col-left p, .intro-col-right p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.inline-cta {
    display: inline-block;
    color: #8b6f47;
    text-decoration: underline;
    font-weight: 600;
    font-size: 16px;
    margin-top: 12px;
    transition: color 0.3s ease;
}

.inline-cta:hover {
    color: #6d5735;
}

.featured-destinations {
    padding: 60px 0;
    background-color: #ffffff;
    margin: 0 -40px;
    padding-left: 40px;
    padding-right: 40px;
}

.section-header-offset {
    margin-bottom: 40px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8b6f47;
    margin-bottom: 8px;
    font-weight: 700;
}

.section-header-offset h3 {
    font-size: 38px;
    color: #1a1a1a;
}

.destinations-magazine-layout {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.dest-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.dest-large {
    flex: 2;
    min-width: 500px;
    background-color: #e8e3d9;
}

.dest-medium {
    flex: 1;
    min-width: 280px;
    background-color: #d4cfc5;
}

.dest-card img {
    width: 100%;
    height: 400px;
    display: block;
}

.dest-content {
    padding: 24px;
}

.dest-content h4 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.dest-content p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.services-preview {
    padding: 80px 0;
}

.services-intro-magazine {
    max-width: 700px;
    margin-bottom: 60px;
}

.services-intro-magazine h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro-magazine p {
    font-size: 18px;
    color: #4a4a4a;
}

.services-grid-magazine {
    display: flex;
    gap: 32px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.service-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #e8e3d9;
}

.service-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-item h5 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-item p {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 20px;
}

.btn-service {
    width: 100%;
    padding: 14px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #1a1a1a;
}

.cta-section-magazine {
    text-align: center;
    padding: 40px;
    background-color: #f5f5f5;
}

.cta-section-magazine p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #6d5735;
}

.quote-section {
    padding: 100px 0;
    text-align: center;
    background-color: #8b6f47;
    margin: 80px -40px;
    color: #ffffff;
}

.quote-section blockquote {
    max-width: 800px;
    margin: 0 auto;
}

.quote-section p {
    font-size: 32px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.4;
}

.quote-section cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

.form-section {
    padding: 80px 0;
}

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

.form-intro {
    margin-bottom: 40px;
    text-align: center;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 18px;
    color: #4a4a4a;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    font-family: inherit;
    background-color: #fafafa;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #6d5735;
}

.final-cta-magazine {
    padding: 100px 40px;
    background-color: #1a1a1a;
    margin: 80px -40px 0;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.final-cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

.footer-magazine {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h6 {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #8b6f47;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.disclaimer-text {
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .nav-top {
        flex-direction: column;
        gap: 16px;
        padding: 16px 20px;
    }

    .nav-links {
        gap: 16px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .intro-columns {
        flex-direction: column;
        gap: 32px;
    }

    .destinations-magazine-layout {
        flex-direction: column;
    }

    .dest-large, .dest-medium {
        min-width: 100%;
    }

    .services-grid-magazine {
        flex-direction: column;
    }

    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }

    .magazine-grid {
        padding: 0 20px;
    }

    .quote-section {
        margin: 40px -20px;
        padding: 60px 20px;
    }

    .quote-section p {
        font-size: 24px;
    }

    .final-cta-magazine {
        margin: 40px -20px 0;
    }
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 12px 16px;
    margin-bottom: 24px;
    border-left: 4px solid #8b6f47;
    display: none;
}

.selected-service-display.show {
    display: block;
}

.selected-service-display p {
    margin: 0;
    font-size: 14px;
    color: #2c2c2c;
}

.selected-service-display strong {
    color: #8b6f47;
}