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

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

.ad-notice {
    background-color: #f4f4f0;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0d8;
}

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

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

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

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

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

.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

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

.story-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.story-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

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

.text-block h2 {
    font-size: 28px;
    margin-bottom: 18px;
    margin-top: 48px;
    font-weight: 600;
    color: #1a1a1a;
}

.text-block h3 {
    font-size: 22px;
    margin-bottom: 14px;
    margin-top: 32px;
    font-weight: 600;
    color: #2a2a2a;
}

.text-block p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.text-block ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.text-block ul li {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.7;
}

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

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

.inline-image-small {
    margin: 40px 0;
    background-color: #e8e8e4;
}

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

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

.btn-text {
    display: inline-block;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 18px;
    padding-bottom: 4px;
    border-bottom: 2px solid #1a1a1a;
    transition: opacity 0.3s ease;
}

.btn-text:hover {
    opacity: 0.7;
}

.services-reveal {
    margin: 64px 0;
}

.services-reveal h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 600;
}

.services-reveal > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.service-card {
    background-color: #fff;
    padding: 32px;
    border: 1px solid #e0e0d8;
    background-color: #f9f9f7;
}

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

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

.service-includes {
    list-style-type: none;
    padding-left: 0;
    margin: 20px 0;
}

.service-includes li {
    font-size: 15px;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    color: #555;
}

.service-includes li:before {
    content: "–";
    position: absolute;
    left: 0;
}

.service-price {
    font-size: 24px;
    font-weight: 600;
    margin: 24px 0 20px;
    color: #1a1a1a;
}

.btn-select {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: inherit;
}

.btn-select:hover {
    opacity: 0.85;
}

.form-section {
    margin: 64px 0;
    padding: 40px;
    background-color: #fff;
    border: 1px solid #e0e0d8;
}

.form-section h2 {
    font-size: 28px;
    margin-bottom: 28px;
    font-weight: 600;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-notice {
    padding: 16px;
    background-color: #f4f4f0;
    border-left: 3px solid #1a1a1a;
    font-size: 15px;
    color: #4a4a4a;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    background-color: #fff;
}

.btn-submit {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 17px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: inherit;
    align-self: flex-start;
}

.btn-submit:hover {
    opacity: 0.85;
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.disclaimer-section {
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid #e0e0d8;
}

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

.site-footer {
    background-color: #2a2a2a;
    color: #c0c0c0;
    padding: 60px 40px 40px;
}

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 24px;
    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: 24px;
    flex-wrap: wrap;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: inherit;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.85;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.contact-block h2 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.8;
}

.email-display {
    color: #2a2a2a;
}

.note-text {
    font-size: 15px;
    color: #666;
    margin-top: 12px;
}

.legal-page {
    max-width: 800px;
}

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

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 16px;
    margin-top: 40px;
    font-weight: 600;
}

.legal-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 24px;
    font-weight: 600;
}

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

.legal-section ul {
    margin-bottom: 16px;
    padding-left: 30px;
}

.legal-section ul li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
}

.thanks-page .service-highlight {
    padding: 20px;
    background-color: #f4f4f0;
    border-left: 3px solid #1a1a1a;
    margin: 32px 0;
    font-size: 17px;
}

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

    .nav-links {
        gap: 20px;
    }

    .editorial-content {
        padding: 40px 20px;
    }

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

    .story-lead {
        font-size: 18px;
    }

    .text-block h2 {
        font-size: 24px;
    }

    .text-block p {
        font-size: 17px;
    }

    .service-card {
        padding: 24px;
    }

    .form-section {
        padding: 24px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }
}