* {
    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: #f9f3e8;
    color: #6b5d4f;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e6d9c3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.editorial-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #e5e5e5;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

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

.editorial-article {
    max-width: 720px;
    margin: 60px auto;
    padding: 0 30px;
}

.article-header {
    margin-bottom: 48px;
    text-align: center;
}

.article-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 400;
    color: #1a1a1a;
}

.article-date {
    font-size: 14px;
    color: #888;
    font-style: italic;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.article-body {
    font-size: 18px;
}

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

.text-section p {
    margin-bottom: 24px;
}

.text-section h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.text-section h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #2c2c2c;
}

.text-section ul {
    margin-left: 32px;
    margin-bottom: 24px;
}

.text-section li {
    margin-bottom: 12px;
}

.lead {
    font-size: 22px;
    line-height: 1.6;
    color: #3a3a3a;
    font-style: italic;
}

.hero-image {
    margin: 48px 0;
    background-color: #f5f1ea;
}

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

.inline-image {
    margin: 48px 0;
    background-color: #f5f1ea;
}

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

.image-caption {
    font-size: 14px;
    color: #666;
    font-style: italic;
    padding: 12px 16px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.inline-cta {
    display: inline-block;
    color: #8b6f47;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    margin-top: 8px;
    transition: color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.services-inline {
    margin: 56px 0;
}

.service-card {
    background: #fafaf8;
    padding: 32px;
    margin-bottom: 40px;
    border-left: 4px solid #d4c5a9;
}

.service-card img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: block;
    object-fit: cover;
    background-color: #f5f1ea;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.service-card .price {
    font-size: 22px;
    font-weight: 700;
    color: #8b6f47;
    margin-top: 16px;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-select {
    background-color: #8b6f47;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.service-select:hover {
    background-color: #6b5437;
}

.form-container {
    background: #f9f7f4;
    padding: 40px;
    margin: 56px 0;
    border: 1px solid #e5e0d5;
}

.form-container h3 {
    font-size: 26px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.selected-service-display {
    background: #fff;
    padding: 16px;
    margin-bottom: 24px;
    border-left: 4px solid #8b6f47;
    font-size: 16px;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.order-form {
    display: flex;
    flex-direction: column;
}

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

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #2c2c2c;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d5d0c5;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2c2c2c;
}

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

.submit-button {
    background-color: #8b6f47;
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 17px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: #6b5437;
}

.submit-button:disabled {
    background-color: #c5b8a3;
    cursor: not-allowed;
}

.contact-info-block {
    background: #fafaf8;
    padding: 32px;
    margin-bottom: 32px;
    border-left: 4px solid #d4c5a9;
}

.contact-info-block h2 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-detail {
    font-size: 17px;
    line-height: 1.8;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.note {
    font-size: 15px;
    color: #666;
    margin-top: 16px;
    font-style: italic;
}

.thanks-info-block {
    background: #fafaf8;
    padding: 32px;
    margin-bottom: 32px;
    border-left: 4px solid #8b6f47;
}

.thanks-info-block h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-info-block p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.selected-service-confirmation {
    margin: 32px 0;
}

.editorial-footer {
    background-color: #2c2c2c;
    color: #d5d5d5;
    margin-top: 80px;
    padding: 56px 40px 24px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-section a {
    color: #d5d5d5;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #a5a5a5;
    font-style: italic;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

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

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

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

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

    .nav-links {
        gap: 20px;
    }

    .article-header h1 {
        font-size: 32px;
    }

    .editorial-article {
        padding: 0 20px;
    }

    .article-body {
        font-size: 17px;
    }

    .form-container {
        padding: 24px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}