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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

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

.header-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.nav-minimal {
    display: flex;
    gap: 25px;
}

.nav-minimal a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-minimal a:hover {
    color: #d4a574;
}

.editorial-flow {
    background-color: #ffffff;
}

.story-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 30px;
}

.hero-editorial {
    position: relative;
    margin: 0 -30px 60px -30px;
}

.hero-image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    font-weight: 700;
}

.intro-narrow {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 400;
}

.story-paragraph {
    margin-bottom: 50px;
}

.story-paragraph h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.story-paragraph p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.image-inline-section {
    margin: 60px 0;
}

.inline-figure {
    width: 100%;
    background-color: #f0f0f0;
}

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

figcaption {
    padding: 15px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
}

.insight-block {
    background-color: #f9f7f4;
    padding: 40px;
    margin: 60px 0;
    border-left: 4px solid #d4a574;
}

.insight-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.insight-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 15px;
}

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

.text-link {
    color: #d4a574;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 2px solid #d4a574;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: #c49563;
    border-bottom-color: #c49563;
}

.trust-building {
    margin: 60px 0;
}

.trust-building h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.trust-building p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.trust-item {
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

.testimonial-inline {
    margin: 60px 0;
    padding: 40px;
    background-color: #fafafa;
    border-left: 3px solid #d4a574;
}

.testimonial-quote {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    color: #2c2c2c;
}

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

.benefits-reveal {
    margin: 60px 0;
}

.benefits-reveal h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.benefits-reveal p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    font-size: 17px;
    line-height: 1.6;
    padding: 15px 0 15px 35px;
    position: relative;
    color: #3a3a3a;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: 700;
    font-size: 20px;
}

.services-editorial {
    margin: 80px 0;
}

.services-editorial h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #3a3a3a;
}

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

.service-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #e8e8e8;
}

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

.service-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.price-reveal {
    font-size: 22px;
    font-weight: 700;
    color: #d4a574;
    margin: 25px 0;
}

.btn-select-service {
    padding: 15px 35px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-select-service:hover {
    background-color: #2c2c2c;
}

.cta-soft-editorial {
    margin: 60px 0;
    text-align: center;
}

.cta-soft-editorial h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-soft-editorial p {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
}

.form-section {
    margin: 60px 0;
    padding: 50px;
    background-color: #f9f7f4;
}

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

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

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

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

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

.btn-submit {
    padding: 15px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.final-thought {
    margin: 60px 0 0 0;
    padding: 40px;
    background-color: #f0f0f0;
    text-align: center;
}

.final-thought p {
    font-size: 20px;
    line-height: 1.6;
    color: #2c2c2c;
    font-style: italic;
    margin: 0;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 30px 20px 30px;
}

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

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

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

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

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: #d4a574;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 25px;
    background-color: #252525;
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
    margin: 0;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.page-hero {
    margin-bottom: 50px;
}

.page-hero h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.page-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #3a3a3a;
}

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

.values-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-item {
    padding: 25px;
    background-color: #f9f9f9;
    border-left: 3px solid #d4a574;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

.team-note {
    margin: 60px 0;
    padding: 35px;
    background-color: #f9f7f4;
}

.team-note h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.team-note p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0;
}

.services-list {
    margin-top: 50px;
}

.service-detail-card {
    margin-bottom: 70px;
    padding-bottom: 50px;
    border-bottom: 2px solid #e0e0e0;
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-detail-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #e8e8e8;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #3a3a3a;
}

.service-includes {
    margin: 30px 0;
    padding: 25px;
    background-color: #f9f9f9;
}

.service-includes h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    font-size: 16px;
    line-height: 1.6;
    padding: 8px 0 8px 25px;
    position: relative;
    color: #4a4a4a;
}

.service-includes li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: 700;
    font-size: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #d4a574;
    margin: 25px 0;
}

.services-form-section {
    margin-top: 80px;
    padding: 50px;
    background-color: #f9f7f4;
}

.services-form-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.services-form-section p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #3a3a3a;
}

.contact-content {
    margin-top: 40px;
}

.contact-info-block {
    margin-bottom: 60px;
}

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

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

.contact-detail h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 8px;
}

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

.contact-note a {
    color: #d4a574;
    text-decoration: underline;
}

.contact-map-placeholder {
    margin: 50px 0;
    padding: 40px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.map-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.contact-additional {
    margin: 50px 0;
}

.contact-additional h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-additional p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
}

.contact-additional a {
    color: #d4a574;
    text-decoration: underline;
}

.contact-faq {
    margin: 60px 0;
}

.contact-faq h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f9f9f9;
}

.faq-item h4 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

.thanks-content {
    text-align: center;
    margin-top: 40px;
}

.thanks-message {
    margin-bottom: 60px;
}

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

.thanks-details {
    margin: 60px 0;
    text-align: left;
}

.thanks-details h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    padding: 25px;
    background-color: #f9f9f9;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

.thanks-service-note {
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f7f4;
    border-left: 4px solid #d4a574;
}

.thanks-service-note h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.thanks-service-note p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0;
}

.thanks-actions {
    margin: 60px 0;
}

.thanks-actions p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.thanks-contact-reminder {
    margin: 50px 0;
    padding: 25px;
    background-color: #f0f0f0;
    text-align: center;
}

.thanks-contact-reminder p {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 40px;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

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

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #3a3a3a;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.legal-content ul,
.legal-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a4a4a;
}

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

.legal-footer {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.gdpr-table thead {
    background-color: #f0f0f0;
}

.gdpr-table th {
    padding: 15px;
    text-align: left;
    font-size: 16px;
    color: #1a1a1a;
    border-bottom: 2px solid #d4a574;
}

.gdpr-table td {
    padding: 15px;
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    border-bottom: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-minimal {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-text-overlay h1 {
        font-size: 32px;
    }

    .story-paragraph h2,
    .benefits-reveal h2,
    .trust-building h2,
    .services-editorial h2,
    .page-hero h1 {
        font-size: 28px;
    }

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

    .story-paragraph p,
    .benefits-reveal p,
    .trust-building p {
        font-size: 16px;
    }

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

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

    .form-section,
    .services-form-section {
        padding: 30px 20px;
    }

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

    .hero-image-wrapper,
    .service-image-wrapper,
    .service-detail-image {
        height: 300px;
    }
}