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

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

.ad-disclosure {
    background-color: #f4f1e8;
    color: #7a6f5d;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #e8e3d6;
}

.nav-minimal {
    padding: 24px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e3d6;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #2c3e50;
    letter-spacing: 1px;
}

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

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

.nav-links a:hover {
    color: #2c3e50;
}

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

.editorial-header {
    background-color: #faf8f3;
    padding: 64px 0;
}

.header-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.editorial-header h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #1a2530;
    margin-bottom: 24px;
    font-weight: 600;
}

.subheading {
    font-size: 20px;
    color: #5a6c7d;
    line-height: 1.6;
}

.header-image {
    max-width: 1200px;
    margin: 48px auto 0;
    padding: 0 24px;
}

.header-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.page-header {
    padding: 64px 24px 32px;
    background-color: #faf8f3;
}

.page-header h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #1a2530;
    margin-bottom: 16px;
    font-weight: 600;
}

.editorial-section {
    padding: 64px 0;
}

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

.narrow-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #3d4f5d;
}

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

.narrow-content h3 {
    font-size: 24px;
    margin: 40px 0 16px;
    color: #2c3e50;
    font-weight: 600;
}

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

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

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

.btn-text {
    display: inline-block;
    color: #2c3e50;
    text-decoration: none;
    font-size: 18px;
    padding: 12px 32px;
    border: 2px solid #2c3e50;
    transition: background-color 0.3s, color 0.3s;
}

.btn-text:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e8e3d6;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #f4f1e8;
}

.service-card h3 {
    font-size: 22px;
    color: #1a2530;
    margin: 0;
}

.service-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin: 0;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

.btn-primary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1a2530;
}

.btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2c3e50;
    padding: 14px 28px;
    text-decoration: none;
    font-size: 16px;
    border: 2px solid #2c3e50;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

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

.form-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    margin-top: 0;
}

.selected-service-display {
    background-color: #e8f4f8;
    padding: 16px;
    margin-bottom: 24px;
    border-left: 4px solid #2c3e50;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #2c3e50;
}

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

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

.btn-submit {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1a2530;
}

.disclaimer {
    margin: 64px 0;
    padding: 24px;
    background-color: #f9f6ef;
    border-left: 4px solid #b89968;
    font-size: 14px;
    color: #5a6c7d;
}

.disclaimer p {
    font-size: 14px;
    margin: 0;
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 48px 0 24px;
    margin-top: 64px;
}

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

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

.footer-column h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

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

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

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

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

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding: 24px 24px 0;
    border-top: 1px solid #3d4f5d;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #b8c5d0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2530;
    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 {
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #b8c5d0;
}

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

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

.btn-accept {
    background-color: #2c3e50;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3d4f5d;
}

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

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

.services-list {
    margin: 48px 0;
}

.service-detail {
    margin-bottom: 64px;
}

.service-image {
    margin-bottom: 24px;
    background-color: #f4f1e8;
}

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

.service-content h2 {
    margin-top: 0;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    margin: 16px 0;
}

.service-content .btn-primary {
    margin-top: 16px;
}

.contact-info {
    margin: 48px 0;
}

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

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 0;
}

.contact-block p {
    font-size: 16px;
    margin: 0;
}

.contact-block .note {
    font-size: 14px;
    color: #7a6f5d;
    margin-top: 8px;
}

.contact-cta {
    margin: 64px 0;
    padding: 40px;
    background-color: #faf8f3;
    text-align: center;
}

.contact-cta h2 {
    margin-top: 0;
    margin-bottom: 16px;
}

.contact-cta p {
    margin-bottom: 24px;
}

.cta-section {
    margin: 64px 0;
    padding: 48px;
    background-color: #faf8f3;
    text-align: center;
}

.cta-section h3 {
    font-size: 28px;
    margin: 0 0 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.thanks-section {
    padding: 96px 0;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a2530;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 24px;
}

.thanks-service {
    background-color: #e8f4f8;
    padding: 24px;
    margin: 32px 0;
    border-left: 4px solid #2c3e50;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0 24px 24px;
}

.legal-content li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #3d4f5d;
}

.legal-content p {
    font-size: 16px;
}

.cookies-table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e8e3d6;
}

.cookies-table th {
    background-color: #faf8f3;
    font-weight: bold;
}

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

    .nav-links {
        gap: 16px;
    }

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

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

    .subheading {
        font-size: 18px;
    }

    .narrow-content h2 {
        font-size: 26px;
    }

    .narrow-content p {
        font-size: 16px;
    }

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

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }

    .form-section {
        padding: 24px;
    }
}