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

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

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-editorial {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: #d84315;
}

.ad-disclosure {
    font-size: 12px;
    color: #757575;
    background-color: #f5f5f5;
    padding: 4px 12px;
    border-radius: 4px;
    flex-shrink: 0;
}

main {
    min-height: 70vh;
}

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

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

.headline-large {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.subheadline {
    font-size: 22px;
    line-height: 1.5;
    color: #5a5a5a;
    font-weight: 400;
}

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

.inline-image-full img,
.inline-image-offset img {
    width: 100%;
    height: auto;
    display: block;
}

.inline-image-offset {
    margin: 40px 0;
    background-color: #e8e8e8;
}

.inline-image-offset figcaption {
    padding: 12px 0;
    font-size: 14px;
    color: #757575;
    font-style: italic;
    text-align: center;
}

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

.text-block h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin: 48px 0 24px 0;
}

.text-block h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    color: #2c2c2c;
    margin: 32px 0 16px 0;
}

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

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 32px;
}

.text-block ul {
    margin: 24px 0;
    padding-left: 24px;
}

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

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

.btn-inline {
    display: inline-block;
    padding: 14px 32px;
    background-color: #d84315;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.btn-inline:hover {
    background-color: #bf360c;
}

.quote-block {
    margin: 48px 0;
    padding: 32px;
    background-color: #f9f9f9;
    border-left: 4px solid #d84315;
}

.quote-block blockquote {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    color: #3a3a3a;
}

.quote-block cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    font-style: normal;
    color: #757575;
}

.services-preview {
    margin: 60px 0;
    padding: 48px 32px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.services-preview h2 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
}

.service-list-compact {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    padding: 24px;
    border: 1px solid #e0e0e0;
    background-color: #fafafa;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.service-item p {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 12px;
}

.service-item .price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #d84315;
    margin: 16px 0;
}

.btn-service {
    padding: 12px 24px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

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

.form-section {
    margin: 60px 0;
    padding: 48px 32px;
    background-color: #ffffff;
    border: 2px solid #d84315;
}

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

.form-section h2 {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 32px;
    color: #5a5a5a;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #d84315;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

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

.cta-final {
    margin: 60px 0;
    padding: 48px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-final h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-final p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #d0d0d0;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #d84315;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.2s;
}

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

.service-detailed {
    margin: 60px 0;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.service-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.service-header h2 {
    font-size: 32px;
    margin: 0;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #d84315;
}

.btn-service-large {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 24px;
    transition: background-color 0.2s;
}

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

.contact-info-block {
    margin: 48px 0;
    padding: 40px 32px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.contact-info-block h2 {
    font-size: 28px;
    margin-bottom: 32px;
    text-align: center;
}

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

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.contact-value {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 14px;
    color: #757575;
    font-style: italic;
}

.newsletter-form {
    margin: 32px 0;
}

.form-group-inline {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
}

.form-group-inline input {
    flex: 1;
    min-width: 250px;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
}

.btn-newsletter {
    padding: 12px 24px;
    background-color: #d84315;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.btn-newsletter:hover {
    background-color: #bf360c;
}

.thanks-content {
    padding: 40px 0;
}

.legal-content {
    padding: 40px 0;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 16px;
}

.legal-updated {
    font-size: 14px;
    color: #757575;
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: #d84315;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #bf360c;
}

.footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 0 24px 0;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

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

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

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    padding: 24px 0;
    border-top: 1px solid #3a3a3a;
    border-bottom: 1px solid #3a3a3a;
    margin-bottom: 24px;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: #a0a0a0;
}

.footer-bottom {
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 10px 20px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.btn-cookie.accept {
    background-color: #4caf50;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #388e3c;
}

.btn-cookie.reject {
    background-color: #757575;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #5a5a5a;
}

@media (max-width: 768px) {
    .headline-large {
        font-size: 36px;
    }

    .subheadline {
        font-size: 18px;
    }

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

    .lead-text {
        font-size: 20px;
    }

    .nav-editorial {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        width: 100%;
        justify-content: space-between;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

    .form-group-inline input {
        min-width: 100%;
    }
}