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

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

.ad-disclosure {
    background-color: #f4f4f4;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #444;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.editorial-container {
    max-width: 740px;
    margin: 0 auto;
    padding: 60px 24px;
}

.story-header {
    margin-bottom: 48px;
}

.story-header h1 {
    font-size: 2.6rem;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-intro {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.story-image-full {
    margin: 48px 0;
    background-color: #e8e8e8;
}

.story-image-full img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-section {
    margin: 56px 0;
}

.story-section h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.story-section p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.inline-image-medium {
    margin: 32px 0;
    background-color: #e8e8e8;
}

.inline-image-medium img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.inline-cta {
    text-align: center;
    margin: 48px 0;
}

.cta-link {
    display: inline-block;
    padding: 14px 36px;
    background-color: #8b6f47;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #6f5838;
}

.dark-bg {
    background-color: #2a2a2a;
    color: #e0e0e0;
    padding: 48px 32px;
    margin-left: -32px;
    margin-right: -32px;
}

.dark-bg h2 {
    color: #fff;
}

.dark-bg p {
    color: #d0d0d0;
}

.services-showcase {
    margin: 72px 0;
}

.services-showcase h2 {
    font-size: 2.2rem;
    margin-bottom: 48px;
    text-align: center;
    color: #1a1a1a;
}

.service-card-editorial {
    display: flex;
    gap: 32px;
    margin-bottom: 56px;
    align-items: flex-start;
}

.service-card-editorial.reverse {
    flex-direction: row-reverse;
}

.service-card-editorial img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #e8e8e8;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.6;
}

.price-tag {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #8b6f47;
}

.booking-section {
    margin: 72px 0;
    padding: 48px 40px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.booking-section h2 {
    font-size: 1.9rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.booking-section > p {
    margin-bottom: 32px;
    color: #555;
}

.editorial-form {
    max-width: 560px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #fff;
}

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

.submit-btn {
    padding: 14px 40px;
    background-color: #8b6f47;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonial {
    margin: 40px 0;
    padding: 24px 32px;
    background-color: #f5f5f5;
    border-left: 4px solid #8b6f47;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 12px;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.9rem;
    color: #666;
}

.story-footer {
    margin-top: 72px;
    padding-top: 32px;
    border-top: 1px solid #ddd;
}

.story-footer p {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
}

.site-footer {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 48px 24px 24px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

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

.footer-col p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #888;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #8b6f47;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

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

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

.cookie-btn.reject {
    background-color: #444;
    color: #fff;
}

.cookie-btn.reject:hover {
    background-color: #555;
}

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

.contact-page h1 {
    font-size: 2.4rem;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 640px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

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

.legal-page h1 {
    font-size: 2.4rem;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 1.7rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 1.05rem;
    color: #3a3a3a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-page ul {
    margin: 16px 0 24px 24px;
}

.legal-page li {
    margin-bottom: 8px;
    color: #3a3a3a;
    line-height: 1.6;
}

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

.services-page h1 {
    font-size: 2.6rem;
    margin-bottom: 48px;
    text-align: center;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item img {
    width: 380px;
    height: 280px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #e8e8e8;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-details p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b6f47;
    display: block;
    margin-top: 12px;
}

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

.about-page h1 {
    font-size: 2.6rem;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.about-page h2 {
    font-size: 1.9rem;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-page p {
    font-size: 1.05rem;
    color: #3a3a3a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    margin: 40px 0;
    background-color: #e8e8e8;
}

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

.thanks-page {
    max-width: 740px;
    margin: 0 auto;
    padding: 100px 24px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-page p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-page .cta-link {
    margin-top: 32px;
}

@media (max-width: 768px) {
    .editorial-container {
        padding: 40px 20px;
    }

    .story-header h1 {
        font-size: 2rem;
    }

    .service-card-editorial,
    .service-card-editorial.reverse {
        flex-direction: column;
    }

    .service-card-editorial img {
        width: 100%;
        height: 240px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        padding: 20px 24px;
    }

    .nav-links {
        gap: 20px;
        font-size: 0.9rem;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-item img {
        width: 100%;
        height: 240px;
    }
}