* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 280px;
}

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

.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: #fff;
}

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

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

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

.navbar {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.ad-notice {
    font-size: 12px;
    color: #888;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f9f9f9;
}

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

.hero-editorial {
    position: relative;
    height: 520px;
    overflow: hidden;
    background-color: #8b6f47;
}

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

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

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.content-narrow {
    max-width: 680px;
    margin: 60px auto;
    padding: 0 30px;
}

.intro-text {
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.content-narrow p {
    margin-bottom: 22px;
    font-size: 17px;
}

.content-narrow h2 {
    font-size: 32px;
    margin: 48px 0 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.content-narrow h3 {
    font-size: 24px;
    margin: 32px 0 18px;
    color: #2c2c2c;
}

.inline-image-block {
    max-width: 900px;
    margin: 70px auto;
    padding: 0 30px;
    background-color: #f5f5f5;
}

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

.image-caption {
    padding: 16px 0;
    text-align: center;
    font-style: italic;
    font-size: 15px;
    color: #666;
}

.insight-box {
    background-color: #f9f6f1;
    border-left: 4px solid #8b6f47;
    padding: 32px;
    margin: 40px 0;
}

.insight-box h3 {
    margin-top: 0;
    color: #8b6f47;
}

.testimonial-inline {
    font-style: italic;
    font-size: 19px;
    margin: 40px 0;
    padding: 28px;
    background-color: #fff;
    border-left: 3px solid #8b6f47;
    color: #333;
    display: block;
}

.testimonial-author {
    display: block;
    margin-top: 12px;
    font-size: 15px;
    font-style: normal;
    color: #666;
}

.services-cards-editorial {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card-editorial {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 32px;
    transition: box-shadow 0.3s ease;
}

.service-card-editorial:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card-editorial h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.service-card-editorial p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.duration {
    font-size: 14px;
    color: #666;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #8b6f47;
}

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

.btn-select:hover {
    background-color: #6d5638;
}

.form-section-editorial {
    max-width: 680px;
    margin: 80px auto;
    padding: 0 30px;
}

.form-section-editorial.hidden {
    display: none;
}

.editorial-form {
    background-color: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    margin-top: 32px;
}

.selected-service-display {
    background-color: #f9f6f1;
    padding: 16px;
    margin-bottom: 28px;
    border-left: 3px solid #8b6f47;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
    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;
}

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

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

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

.final-section {
    margin-top: 80px;
    margin-bottom: 60px;
}

.disclaimer-section {
    max-width: 800px;
    margin: 60px auto 80px;
    padding: 32px;
    background-color: #fff9e6;
    border: 1px solid #e6d7a3;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 50px 30px 30px;
}

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

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

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

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

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

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

.footer-section a:hover {
    color: #f0d19c;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.contact-page-content,
.legal-page-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.contact-page-content h1,
.legal-page-content h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.contact-page-content h2,
.legal-page-content h2 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: #2c2c2c;
}

.contact-page-content p,
.legal-page-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.contact-info-block {
    background-color: #f9f6f1;
    padding: 24px;
    margin: 28px 0;
    border-left: 3px solid #8b6f47;
}

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

.services-page-grid {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card-page {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 32px;
}

.service-card-page h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.service-card-page p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
    color: #444;
}

.service-price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #8b6f47;
    margin-top: 16px;
}

.about-page-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 30px;
}

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

.about-page-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c2c2c;
}

.about-page-content p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.about-image-wrapper {
    margin: 50px 0;
    background-color: #f5f5f5;
}

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

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background-color: #fff;
    border: 2px solid #8b6f47;
    text-align: center;
}

.thanks-container h1 {
    font-size: 38px;
    color: #8b6f47;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.thanks-service-info {
    background-color: #f9f6f1;
    padding: 20px;
    margin: 32px 0;
    font-weight: 600;
}

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

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

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

    .content-narrow {
        padding: 0 20px;
    }

    .services-cards-editorial {
        padding: 0 20px;
    }

    .editorial-form {
        padding: 24px;
    }

    .footer-content {
        flex-direction: column;
    }
}