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

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

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

.main-nav {
    background-color: #fff;
    border-bottom: 2px solid #e8e8e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-menu a:hover {
    color: #c17a5c;
}

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

.editorial-hero {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #d4c4b0;
}

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

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

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: 400;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.6);
    line-height: 1.3;
}

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

.editorial-intro {
    padding: 60px 0;
}

.intro-lead {
    font-size: 22px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
    font-style: italic;
}

.editorial-intro p {
    font-size: 18px;
    margin-bottom: 25px;
}

.inline-image {
    margin: 50px 0;
    background-color: #f5f2ed;
}

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

.inline-image figcaption {
    padding: 15px 20px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
}

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

.cta-text-link {
    display: inline-block;
    color: #c17a5c;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 2px solid #c17a5c;
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.cta-text-link:hover {
    color: #a0644a;
    border-bottom-color: #a0644a;
}

.editorial-story-block {
    background-color: #f9f7f4;
    padding: 80px 0;
}

.editorial-story-block h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.4;
}

.editorial-story-block p {
    font-size: 18px;
    margin-bottom: 25px;
}

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

.services-editorial h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
}

.services-editorial > .narrow-content > p {
    font-size: 18px;
    margin-bottom: 50px;
}

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

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

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #c17a5c;
}

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

.service-select-btn:hover {
    background-color: #c17a5c;
}

.service-select-btn.selected {
    background-color: #4a7c59;
}

.editorial-form-section {
    background-color: #f9f7f4;
    padding: 80px 0;
}

.editorial-form-section h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
}

.editorial-form-section > .narrow-content > p {
    font-size: 18px;
    margin-bottom: 40px;
}

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

.form-notice {
    background-color: #fff4e5;
    border-left: 4px solid #f0a048;
    padding: 15px 20px;
    margin-bottom: 30px;
    font-size: 15px;
    color: #8b5a00;
    display: block;
}

.form-notice.hidden {
    display: none;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

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

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

.form-submit-btn:hover {
    background-color: #a0644a;
}

.form-submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.editorial-closing {
    padding: 80px 0 60px;
}

.editorial-closing p {
    font-size: 18px;
    margin-bottom: 25px;
}

.main-footer {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 60px 0 20px;
}

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

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

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

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

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

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

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

.footer-section ul li a:hover {
    color: #c17a5c;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 40px auto 30px;
    padding: 0 30px;
    font-size: 13px;
    line-height: 1.6;
    color: #b0b0b0;
    border-top: 1px solid #444;
    padding-top: 30px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #e0e0e0;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #2c2c2c;
}

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

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

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

.cookie-accept {
    background-color: #4a7c59;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #3a6247;
}

.cookie-reject {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

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

.thanks-container {
    max-width: 680px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f9f7f4;
    border: 1px solid #e0e0e0;
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.thanks-service-info {
    background-color: #fff;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #c17a5c;
}

.thanks-service-info strong {
    color: #c17a5c;
}

.back-home-btn {
    display: inline-block;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    padding: 14px 35px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.back-home-btn:hover {
    background-color: #c17a5c;
}

.page-header {
    background-color: #2c2c2c;
    color: #fff;
    padding: 80px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.page-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #2c2c2c;
}

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

.page-content ul {
    margin: 20px 0 20px 30px;
    font-size: 17px;
    line-height: 1.8;
}

.page-content ul li {
    margin-bottom: 10px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 60px auto;
    max-width: 900px;
    padding: 0 30px;
}

.service-item {
    background-color: #f9f7f4;
    padding: 40px;
    border-left: 4px solid #c17a5c;
}

.service-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-item p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.service-item .price {
    font-size: 32px;
    font-weight: 700;
    color: #c17a5c;
    margin-top: 20px;
    display: block;
}

.contact-info-block {
    max-width: 680px;
    margin: 60px auto;
    padding: 0 30px;
}

.contact-info-item {
    margin-bottom: 40px;
}

.contact-info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.contact-info-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

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

.legal-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.legal-section p,
.legal-section ul {
    font-size: 16px;
    line-height: 1.7;
}

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

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .intro-lead {
        font-size: 19px;
    }

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

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

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

    .service-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}