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

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

.ad-disclosure {
    background-color: #f0f0f0;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.magazine-header {
    background-color: #fff;
    border-bottom: 2px solid #2c2c2c;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #2c2c2c;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #b8926a;
}

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

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #d4c4b0;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 60px 80px;
    max-width: 800px;
}

.hero-content-overlay h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.hero-content-overlay p {
    font-size: 20px;
    font-style: italic;
}

.magazine-intro {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.intro-col-wide {
    flex: 2;
}

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

.intro-col-wide h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 400;
}

.intro-col-wide p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
}

.highlight-box {
    background-color: #f5efe7;
    padding: 30px;
    border-left: 4px solid #b8926a;
}

.highlight-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.highlight-box ul {
    list-style: none;
}

.highlight-box li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.highlight-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #b8926a;
}

.services-preview-magazine {
    background-color: #fff;
    padding: 80px 40px;
}

.services-preview-magazine h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 400;
}

.services-grid-magazine {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card-mag {
    flex: 1;
    min-width: 320px;
    background-color: #fafaf8;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.service-card-featured {
    flex: 1.5;
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.price-tag {
    display: inline-block;
    background-color: #2c2c2c;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-primary {
    display: inline-block;
    background-color: #b8926a;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

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

.value-proposition-split {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.vp-content {
    flex: 1;
}

.vp-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 400;
}

.vp-content p {
    font-size: 17px;
    margin-bottom: 20px;
}

.vp-image {
    flex: 1;
    height: 450px;
}

.vp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-section-magazine {
    background-color: #f5efe7;
    padding: 80px 40px;
}

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

.booking-container h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 400;
}

.booking-container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.booking-form-magazine {
    background-color: #fff;
    padding: 40px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    background-color: #2c2c2c;
    color: #fff;
    padding: 15px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #b8926a;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    margin-bottom: 15px;
    color: #aaa;
}

.disclaimer {
    font-size: 12px;
    font-style: italic;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #b8926a;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
}

.btn-cookie-accept {
    background-color: #b8926a;
    color: #fff;
}

.btn-cookie-accept:hover {
    background-color: #a07d58;
}

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

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

.thanks-page {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #fff;
}

.thanks-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #b8926a;
}

.thanks-page p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.thanks-page .btn-primary {
    margin-top: 30px;
}

.about-page {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
}

.about-page h1 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 400;
}

.about-page p {
    font-size: 17px;
    margin-bottom: 20px;
    text-align: justify;
}

.about-image {
    width: 100%;
    height: 400px;
    margin: 40px 0;
    background-color: #e0d5c7;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

.services-page h1 {
    font-size: 48px;
    margin-bottom: 50px;
    font-weight: 400;
    text-align: center;
}

.service-detail {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #ddd;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-image {
    flex: 1;
    height: 350px;
    background-color: #e8d5c4;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-detail-content .price-tag {
    margin-top: 20px;
}

.contact-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.contact-page h1 {
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 400;
}

.contact-info {
    background-color: #f5efe7;
    padding: 40px;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
}

.contact-info strong {
    font-weight: 600;
    color: #2c2c2c;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 400;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-page p {
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 15px;
    margin-bottom: 10px;
}

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

    .main-nav {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

    .intro-columns,
    .value-proposition-split,
    .service-detail {
        flex-direction: column;
    }

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

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

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

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