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

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

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

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

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.editorial-hero {
    margin-top: 60px;
    margin-bottom: 50px;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    background-color: #e8e6e1;
}

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

.editorial-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.editorial-subtitle {
    font-size: 20px;
    color: #666;
    font-style: italic;
    font-weight: 400;
}

.editorial-body {
    margin-bottom: 80px;
}

.lead-paragraph {
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #3a3a3a;
}

.editorial-body p {
    margin-bottom: 24px;
    font-size: 18px;
}

.editorial-body h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.editorial-body h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #2c2c2c;
}

.inline-image-section {
    margin: 40px 0;
    background-color: #f4f1ed;
    padding: 20px;
}

.inline-image-section img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 12px;
    object-fit: cover;
}

.image-caption {
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
}

.content-block-offset {
    margin: 40px 0;
    padding-left: 40px;
    border-left: 4px solid #d4cfc7;
}

.services-preview {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 2px solid #e0ddd8;
    border-bottom: 2px solid #e0ddd8;
}

.services-preview h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.services-intro {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.service-cards-inline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    background-color: #fff;
    padding: 28px;
    border: 1px solid #e0ddd8;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #c4bfb7;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 0;
    color: #1a1a1a;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 16px;
}

.service-select-btn {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.service-card.selected {
    border-color: #2c2c2c;
    background-color: #fafaf8;
}

.inquiry-section {
    margin: 60px 0;
}

.inquiry-section h2 {
    margin-top: 0;
}

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

.form-notice {
    background-color: #f4f1ed;
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #666;
    border-left: 3px solid #c4bfb7;
}

.form-notice.selected {
    background-color: #e8f4e8;
    border-left-color: #4a8f4a;
    color: #2c5c2c;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d4cfc7;
    font-size: 16px;
    font-family: inherit;
    background-color: #fafaf8;
}

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

.submit-btn {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover:not(:disabled) {
    background-color: #1a1a1a;
}

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

.disclaimer-section {
    margin: 40px 0;
    padding: 20px;
    background-color: #f4f1ed;
    border-left: 3px solid #c4bfb7;
}

.disclaimer {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.editorial-footer {
    background-color: #2c2c2c;
    color: #e0ddd8;
    padding: 50px 0 30px;
    margin-top: 80px;
}

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

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

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

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

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

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

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

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

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

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

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

.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;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #fff;
    color: #1a1a1a;
}

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

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

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

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

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 16px;
    line-height: 1.6;
}

.thanks-service-info {
    background-color: #f4f1ed;
    padding: 20px;
    margin: 30px 0;
    font-size: 16px;
}

.thanks-back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.thanks-back-link:hover {
    background-color: #1a1a1a;
}

@media (max-width: 768px) {
    .editorial-title {
        font-size: 32px;
    }

    .editorial-subtitle {
        font-size: 18px;
    }

    .editorial-body h2 {
        font-size: 26px;
    }

    .main-nav {
        flex-direction: column;
        gap: 20px;
    }

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

    .content-block-offset {
        padding-left: 20px;
    }

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

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