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

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.logo:hover {
    color: #3498db;
}

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

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

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

.editorial-hero {
    background-color: #ffffff;
    padding: 50px 0 40px;
}

.hero-image-wrapper {
    max-width: 920px;
    margin: 0 auto 40px;
    padding: 0 25px;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 25px;
}

.editorial-content h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 22px;
    font-weight: 700;
}

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

.story-section {
    background-color: #ffffff;
    padding: 60px 0;
}

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

.story-section h2:first-of-type {
    margin-top: 0;
}

.story-section h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 16px;
    margin-top: 35px;
    color: #2c3e50;
    font-weight: 600;
}

.story-section p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 20px;
    color: #444;
}

.inline-image-block {
    margin: 35px 0;
    background-color: #f5f5f5;
}

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

.services-preview {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.services-preview h2 {
    font-size: 34px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

.services-preview > .editorial-content > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
    color: #555;
}

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 18px;
}

.select-service-btn {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 13px 28px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

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

.form-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

.form-section > .editorial-content > p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #555;
}

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

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

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

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

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #333;
}

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 17px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.trust-section {
    background-color: #f0f4f8;
    padding: 60px 0;
}

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

.trust-section p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.footer-editorial {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 30px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 25px 25px 0;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

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

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

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.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;
}

.page-hero-small {
    background-color: #ffffff;
    padding: 50px 0 30px;
}

.page-hero-small h1 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-inline {
    background-color: #e8f4f8;
    padding: 50px 0;
}

.cta-inline h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.cta-inline p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #555;
}

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

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

.services-detail-section {
    background-color: #ffffff;
    padding: 40px 0 60px;
}

.service-detail-card {
    margin-bottom: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.service-detail-header {
    background-color: #f8f9fa;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.service-detail-header h2 {
    font-size: 26px;
    margin: 0;
    color: #1a1a1a;
    font-weight: 600;
}

.price-badge {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.service-detail-body {
    padding: 30px;
}

.service-detail-body p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.service-detail-body h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 14px;
    color: #2c3e50;
    font-weight: 600;
}

.service-detail-body ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.service-detail-body ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #555;
}

.service-cta-btn {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 13px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.contact-section {
    background-color: #ffffff;
    padding: 40px 0 60px;
}

.contact-info-box {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.contact-info-box h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.contact-text-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-text-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.thanks-section {
    background-color: #ffffff;
    padding: 60px 0;
    min-height: 60vh;
}

.thanks-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 30px;
}

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

.thanks-box .lead-text {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 35px;
    text-align: left;
}

.thanks-details p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #444;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 35px;
}

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

.thanks-next-steps ol {
    margin-left: 20px;
}

.thanks-next-steps ol li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #555;
}

.back-home-btn {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.legal-page {
    background-color: #ffffff;
    padding: 40px 0 60px;
}

.legal-intro {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
    font-style: italic;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #444;
}

.legal-page ul,
.legal-page ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-page ul li,
.legal-page ol li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #555;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2980b9;
}

.legal-date {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.legal-table thead {
    background-color: #f8f9fa;
}

.legal-table th {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.legal-table td {
    padding: 12px;
    border: 1px solid #e0e0e0;
    font-size: 15px;
    color: #555;
}

@media (max-width: 768px) {
    .editorial-content h1 {
        font-size: 32px;
    }

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

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

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

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

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

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

    .legal-table {
        font-size: 13px;
    }

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