* {
    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: #2c3e50;
    background-color: #fafafa;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: #fff;
    padding: 20px;
    display: none;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

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

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

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

.nav-minimal {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #555;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.editorial-container {
    max-width: 740px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

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

.editorial-hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.editorial-image {
    margin: 50px 0;
    width: 100%;
}

.editorial-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
}

.editorial-text {
    margin-bottom: 50px;
}

.editorial-text h2 {
    font-size: 32px;
    line-height: 1.3;
    margin: 60px 0 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.editorial-text h3 {
    font-size: 24px;
    line-height: 1.4;
    margin: 40px 0 18px;
    color: #2c3e50;
    font-weight: 600;
}

.editorial-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #333;
}

.editorial-text ul,
.editorial-text ol {
    margin: 24px 0;
    padding-left: 24px;
}

.editorial-text li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #333;
}

.editorial-quote {
    margin: 50px 0;
    padding: 30px 40px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    color: #444;
    display: flex;
    flex-direction: column;
}

.editorial-quote cite {
    margin-top: 16px;
    font-style: normal;
    font-size: 16px;
    color: #7f8c8d;
}

.inline-cta,
.inline-cta-alt {
    margin: 50px 0;
    padding: 35px;
    background-color: #ecf7fd;
    border-radius: 3px;
    text-align: center;
}

.inline-cta-alt {
    background-color: #fef5e7;
}

.inline-cta p,
.inline-cta-alt p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #2c3e50;
}

.btn-inline {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-inline:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.service-story {
    margin: 50px 0;
    padding: 35px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

.service-story h2,
.service-story h3 {
    margin-top: 0;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin: 24px 0;
}

.btn-service {
    padding: 14px 32px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.editorial-form {
    margin: 50px 0;
    padding: 40px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

.editorial-form h2 {
    margin-top: 0;
}

.form-editorial {
    margin-top: 30px;
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 14px 40px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.editorial-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
    color: #7f8c8d;
}

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

.contact-info {
    margin: 40px 0;
}

.contact-block {
    margin: 30px 0;
}

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

.note {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 8px;
}

.faq-item {
    margin: 35px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 3px;
}

.faq-item h3 {
    font-size: 20px;
    margin: 0 0 12px 0;
    color: #2c3e50;
}

.faq-item p {
    margin: 0;
}

.thanks-details {
    margin: 30px 0;
    padding: 25px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
}

.thanks-service {
    font-size: 18px;
    color: #155724;
    margin: 0;
}

.steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding: 20px 20px 20px 60px;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    border-radius: 3px;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.legal-text {
    font-size: 16px;
}

.legal-text h2 {
    font-size: 26px;
    margin-top: 50px;
}

.legal-text h3 {
    font-size: 20px;
    margin-top: 30px;
}

.legal-text p {
    font-size: 16px;
}

.legal-text ul,
.legal-text ol {
    font-size: 16px;
}

.legal-text li {
    font-size: 16px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

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

    .nav-links {
        gap: 20px;
    }

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

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

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

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

    .editorial-text h3 {
        font-size: 20px;
    }

    .editorial-text p,
    .editorial-text li {
        font-size: 17px;
    }

    .editorial-quote {
        padding: 20px 24px;
        font-size: 18px;
    }

    .inline-cta,
    .inline-cta-alt,
    .service-story,
    .editorial-form {
        padding: 25px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .steps-list li {
        padding-left: 55px;
    }

    .steps-list li::before {
        left: 15px;
    }

    .cookie-table {
        font-size: 14px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px;
    }
}