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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

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

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #3498db;
}

.editorial-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 60px 40px;
}

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

.article-hero.small {
    margin-bottom: 50px;
}

.hero-image-wrapper {
    margin-bottom: 40px;
    background-color: #f8f9fa;
    overflow: hidden;
    border-radius: 4px;
}

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

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

.article-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #5a6c7d;
    font-weight: 400;
}

.article-body {
    margin-top: 40px;
}

.article-section {
    margin-bottom: 50px;
}

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

.article-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 30px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 25px;
}

.article-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #3d4852;
    margin-bottom: 20px;
}

.inline-image-block {
    margin: 40px 0;
    background-color: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
}

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

.highlight-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-left: 4px solid #3498db;
    margin: 50px 0;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

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

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 600;
}

.cta-inline {
    margin: 30px 0;
}

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.2s;
}

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

.cta-link.secondary {
    background-color: #95a5a6;
    margin-left: 15px;
}

.cta-link.secondary:hover {
    background-color: #7f8c8d;
}

.split-content {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    align-items: flex-start;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 0 0 300px;
    background-color: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
}

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

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

.service-cards-editorial {
    margin-top: 40px;
}

.service-card-editorial {
    border: 1px solid #e9ecef;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 4px;
    background-color: #ffffff;
}

.service-card-editorial h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    margin-top: 0;
}

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

.price-tag {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #3498db;
    margin-top: 10px;
}

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

.testimonial-inline {
    border-left: 4px solid #3498db;
    padding: 30px 40px;
    background-color: #f8f9fa;
    margin: 40px 0;
}

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

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

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

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background-color: #ffffff;
    color: #2c3e50;
    font-family: inherit;
}

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

.submit-btn {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.disclaimer-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e9ecef;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #7f8c8d;
    font-style: italic;
}

.service-detail-section {
    margin-top: 50px;
}

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

.service-detail-image {
    flex: 0 0 350px;
    background-color: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
}

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

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 18px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.service-features li {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-price-box {
    margin-top: 25px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
    margin-right: 10px;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
}

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

.contact-info-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.email-note {
    font-size: 14px;
    color: #95a5a6;
    margin-top: 8px;
}

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

.thanks-content h1 {
    font-size: 38px;
    color: #27ae60;
    margin-bottom: 20px;
}

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

.selected-service-info {
    font-weight: 600;
    color: #3498db;
    font-size: 19px;
    margin: 20px 0;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

.legal-content ul li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.7;
}

.legal-note {
    font-size: 14px;
    color: #95a5a6;
    margin-top: 40px;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 40px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 10px;
}

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    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: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    color: #ecf0f1;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

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

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

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

@media (max-width: 768px) {
    .editorial-content {
        padding: 40px 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

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

    .article-section h2 {
        font-size: 26px;
    }

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

    .split-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .contact-info-grid {
        flex-direction: column;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }
}