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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-inline {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

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

.nav-inline a:hover {
    color: #1a1a1a;
}

.ad-label {
    font-size: 12px;
    color: #888;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 3px;
    white-space: nowrap;
}

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

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

.title-large {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.intro-text {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.hero-image-wrap {
    margin: 40px 0;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

.content-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

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

.content-block li {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 10px;
}

.image-inline {
    margin: 40px 0;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

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

.inline-cta-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin: 50px 0;
    text-align: center;
}

.cta-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.btn-inline {
    display: inline-block;
    padding: 14px 32px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.btn-inline:hover {
    background: #333;
}

.btn-inline-large {
    display: inline-block;
    padding: 16px 40px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    transition: background 0.2s ease;
    margin-top: 20px;
}

.btn-inline-large:hover {
    background: #333;
}

.services-editorial {
    margin-top: 40px;
}

.service-item {
    padding: 35px 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.service-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    margin-top: 0;
}

.service-item p {
    margin-bottom: 20px;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.price-tag-large {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.btn-select,
.btn-select-large {
    padding: 12px 28px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-select-large {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-select:hover,
.btn-select-large:hover {
    background: #333;
}

.testimonial-inline {
    margin: 60px 0;
    padding: 40px;
    background: #f8f9fa;
    border-left: 4px solid #1a1a1a;
    border-radius: 6px;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 19px;
    font-style: italic;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 15px;
}

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

.form-editorial {
    margin-top: 40px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

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

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

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

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

.btn-submit {
    padding: 14px 36px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-submit:hover {
    background: #333;
}

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

.contact-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 6px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 0;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 0;
}

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

.thanks-confirmation {
    background: #f0f7ff;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

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

.link-list {
    list-style: none;
    padding: 0;
}

.link-list li {
    margin-bottom: 15px;
}

.link-list a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.2s ease;
}

.link-list a:hover {
    color: #666;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
}

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

.final-section {
    margin-bottom: 80px;
}

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

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

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 10px;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

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

.disclaimer-footer {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    max-width: 900px;
    margin: 20px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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: 20px;
    flex-wrap: wrap;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

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

.btn-accept:hover {
    background: #e5e5e5;
}

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

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

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

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

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

    .content-block h3 {
        font-size: 22px;
    }

    .nav-inline {
        gap: 15px;
        font-size: 14px;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

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

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

    .inline-cta-box {
        padding: 30px 20px;
    }

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

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