* {
    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: #ffffff;
}

.ad-disclosure {
    background-color: #f8f4f0;
    color: #6b5d52;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e5ddd5;
}

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

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

.brand {
    font-size: 26px;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: 1px;
}

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

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

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

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

.editorial-flow {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.text-centered-narrow {
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
}

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

.text-centered-narrow h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1a1a1a;
}

.text-centered-narrow h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #2c2c2c;
}

.text-centered-narrow p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #3a3a3a;
}

.intro-large {
    font-size: 22px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 30px;
}

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

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

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 60px 40px 40px;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

.inline-image-section {
    width: 100%;
    margin: 40px 0;
}

.inline-image-section img {
    width: 100%;
    height: auto;
    background-color: #f5f1ed;
    object-fit: cover;
}

.image-caption {
    font-size: 15px;
    color: #7a7a7a;
    font-style: italic;
    margin-top: 12px;
    text-align: center;
}

.insight-block {
    background-color: #f9f7f5;
    padding: 50px 40px;
    margin: 40px 0;
    border-left: 4px solid #8b7a6a;
}

.insight-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

.testimonial-inline {
    background-color: #faf8f6;
    padding: 40px 50px;
    margin: 50px 0;
    border-left: 3px solid #9d8b7a;
}

.testimonial-inline blockquote {
    border: none;
    margin: 0;
}

.testimonial-inline p {
    font-size: 20px;
    line-height: 1.6;
    color: #3a3a3a;
    font-style: italic;
    margin-bottom: 15px;
}

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

.inline-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.inline-cta:hover {
    background-color: #4a4a4a;
}

.services-editorial {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 50px 0;
}

.services-intro {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.service-card-editorial {
    background-color: #ffffff;
    padding: 0;
    border: 1px solid #e5e5e5;
    overflow: hidden;
}

.service-card-editorial img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #f0ebe6;
}

.service-card-editorial h2,
.service-card-editorial h3 {
    font-size: 26px;
    margin: 30px 30px 15px;
    color: #1a1a1a;
}

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

.service-card-editorial .price {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 20px 30px;
}

.service-select {
    display: block;
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 14px 28px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-select:hover {
    background-color: #4a4a4a;
}

.service-link {
    display: inline-block;
    margin: 0 30px 30px;
    padding: 12px 26px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.service-link:hover {
    background-color: #4a4a4a;
}

.cta-editorial-block {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 50px 40px;
    text-align: center;
    margin: 50px 0;
}

.cta-editorial-block h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-editorial-block p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #e8e8e8;
}

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 16px;
    margin: 10px;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #f0f0f0;
}

.cta-link.secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-link.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

.disclaimer-text {
    font-size: 14px;
    color: #7a7a7a;
    font-style: italic;
    padding: 30px;
    background-color: #f9f7f5;
    border-left: 3px solid #d0c4b8;
    margin-top: 50px;
}

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

.contact-block {
    padding: 30px;
    background-color: #faf8f6;
    border-left: 3px solid #8b7a6a;
}

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

.contact-block p {
    font-size: 16px;
    color: #3a3a3a;
    margin-bottom: 8px;
}

.no-link-email {
    font-weight: 600;
    color: #2c2c2c;
}

.note-small {
    font-size: 14px;
    color: #7a7a7a;
    font-style: italic;
    margin-top: 10px;
}

.thanks-section {
    padding: 60px 0;
}

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

.next-steps {
    background-color: #faf8f6;
    padding: 40px;
    margin: 40px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps li {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 12px;
}

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    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.7;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin: 15px 0 15px 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.editorial-footer {
    background-color: #2c2c2c;
    color: #e8e8e8;
    padding: 60px 30px 30px;
    margin-top: 80px;
}

.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: 200px;
}

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

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

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

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

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

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

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

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

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    min-width: 300px;
}

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

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

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

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

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

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

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

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

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

    .text-centered-narrow h1 {
        font-size: 34px;
    }

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

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

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

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

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