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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

.editorial-header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.minimal-nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

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

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

.hero-narrative {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    margin-bottom: 40px;
    background-color: #e8e8e8;
}

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

.narrative-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.lead-text {
    font-size: 21px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.content-block h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 16px;
    margin-top: 30px;
    color: #2c2c2c;
    font-weight: 600;
}

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3c3c3c;
}

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

.content-block ul li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #3c3c3c;
}

.inline-image-section {
    margin: 60px 0;
    background-color: #e8e8e8;
}

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

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

.insight-section {
    background-color: #f5f5f5;
    padding: 40px;
    margin: 60px -40px;
}

.testimonial-inline {
    margin: 60px 0;
    padding: 40px;
    background-color: #fff;
    border-left: 4px solid #2c2c2c;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 20px;
    line-height: 1.7;
    color: #2c2c2c;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.service-reveal {
    margin: 80px 0;
}

.service-reveal h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card-editorial {
    background-color: #fff;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.service-card-editorial img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e8e8e8;
    margin-bottom: 30px;
}

.service-card-editorial h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

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

.select-service-btn {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

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

.form-section-editorial {
    margin: 80px 0;
    padding: 50px;
    background-color: #fff;
}

.form-section-editorial h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-section-editorial > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #444;
}

.selected-service-display {
    background-color: #f5f5f5;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #2c2c2c;
}

.selected-service-display p {
    font-size: 17px;
    color: #2c2c2c;
    margin: 0;
}

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

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

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

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

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

.submit-btn {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
    margin-top: 10px;
}

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

.trust-section {
    margin: 80px 0;
    padding: 50px;
    background-color: #f9f9f9;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

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

.trust-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #3c3c3c;
}

.editorial-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 60px 30px 30px;
}

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

.disclaimer {
    max-width: 1100px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: rgba(255,255,255,0.05);
    border-left: 3px solid #666;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #999;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #4CAF50;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #45a049;
}

.cookie-btn.reject {
    background-color: #666;
    color: #fff;
}

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

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

.team-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #fff;
}

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

.team-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #3c3c3c;
}

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

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

.values-list {
    list-style: none;
    margin-left: 0;
}

.values-list li {
    font-size: 18px;
    line-height: 1.8;
    padding-left: 30px;
    position: relative;
    margin-bottom: 16px;
    color: #3c3c3c;
}

.values-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 24px;
    color: #2c2c2c;
}

.services-detailed {
    margin: 60px 0;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

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

.service-intro {
    font-size: 19px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 30px;
    color: #2c2c2c;
}

.service-detail-content ul {
    margin-left: 30px;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #3c3c3c;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 30px 0;
}

.service-cta {
    display: inline-block;
    background-color: #2c2c2c;
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
}

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

.service-detail-image {
    flex: 0 0 400px;
    background-color: #e8e8e8;
}

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

.process-section {
    margin: 80px 0;
    padding: 50px;
    background-color: #f5f5f5;
}

.process-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    background-color: #fff;
    padding: 30px;
    border-left: 4px solid #2c2c2c;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.process-step p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.contact-info-section {
    margin: 60px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 60px;
}

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

.contact-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #3c3c3c;
    margin-bottom: 8px;
}

.note {
    font-size: 16px;
    color: #666;
    font-style: italic;
    margin-top: 12px;
}

.contact-additional {
    margin: 60px 0;
    padding: 40px;
    background-color: #f5f5f5;
}

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

.contact-additional p {
    font-size: 18px;
    line-height: 1.8;
    color: #3c3c3c;
    margin-bottom: 20px;
}

.contact-additional ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.contact-additional ul li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #3c3c3c;
}

.map-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #fff;
}

.map-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.map-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #3c3c3c;
}

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

.thanks-cta {
    margin-top: 50px;
    text-align: center;
}

.back-home-btn {
    display: inline-block;
    background-color: #2c2c2c;
    color: #fff;
    padding: 14px 40px;
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s;
}

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

.legal-page .story-container {
    max-width: 900px;
}

.legal-date {
    font-size: 16px;
    color: #666;
    font-style: italic;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3c3c3c;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #3c3c3c;
}

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .story-container {
        padding: 40px 20px;
    }

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

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

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

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

    .insight-section {
        margin: 40px -20px;
        padding: 30px 20px;
    }

    .testimonial-inline {
        padding: 30px 20px;
    }

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

    .service-detail-block {
        flex-direction: column;
        gap: 30px;
    }

    .service-detail-block.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 1;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}