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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0066cc;
}

.ad-label {
    font-size: 12px;
    color: #666;
    padding: 4px 10px;
    background-color: #f0f0f0;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
}

.editorial-main {
    background-color: #ffffff;
    padding: 60px 0;
}

.editorial-article {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.editorial-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
    color: #000;
}

.editorial-intro {
    font-size: 22px;
    color: #444;
    line-height: 1.6;
    font-style: italic;
}

.editorial-image {
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-bottom: 50px;
    margin-top: 40px;
    overflow: hidden;
}

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

.editorial-content {
    font-size: 19px;
    line-height: 1.8;
}

.editorial-lead {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #222;
}

.editorial-content p {
    margin-bottom: 25px;
}

.editorial-content h2 {
    font-size: 36px;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #000;
}

.editorial-content h3 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 18px;
    font-weight: 600;
    color: #111;
}

.editorial-inline-image {
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-top: 40px;
    margin-bottom: 40px;
    overflow: hidden;
}

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

.editorial-quote {
    border-left: 4px solid #333;
    padding-left: 30px;
    margin: 40px 0;
    font-style: italic;
}

.editorial-quote p {
    font-size: 26px;
    line-height: 1.5;
    color: #333;
}

.editorial-list {
    margin: 25px 0;
    padding-left: 30px;
}

.editorial-list li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.editorial-cta-inline {
    background-color: #f5f5f5;
    padding: 40px;
    margin: 50px 0;
    border-radius: 4px;
}

.editorial-cta-inline h3 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #000;
}

.editorial-cta-inline p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #333;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    border: 2px solid #1a1a1a;
    transition: all 0.3s;
    cursor: pointer;
}

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

.editorial-final-cta {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px;
    margin: 60px 0;
    text-align: center;
    border-radius: 4px;
}

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

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

.editorial-final-cta .btn-primary {
    background-color: #ffffff;
    color: #1a1a1a;
}

.editorial-final-cta .btn-primary:hover {
    background-color: #f0f0f0;
}

.services-section {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 2px solid #e0e0e0;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    color: #000;
}

.section-intro {
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
    color: #444;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background-color: #fafafa;
    padding: 30px;
    border-radius: 6px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 4px;
}

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

.service-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #000;
}

.service-card p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
    font-family: 'Arial', sans-serif;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
}

.service-detailed {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-detailed-image {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

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

.service-detailed-content h2 {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #000;
}

.service-detailed-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.service-detailed-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-detailed-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-detailed-content li {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
}

.contact-form-section {
    background-color: #f5f5f5;
    padding: 50px;
    margin: 60px 0;
    border-radius: 4px;
}

.contact-form-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
    color: #000;
}

.contact-form-section > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #444;
    font-family: 'Arial', sans-serif;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info-card {
    flex: 1;
    min-width: 200px;
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 4px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #000;
    font-family: 'Arial', sans-serif;
}

.contact-info-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    font-family: 'Arial', sans-serif;
}

.faq-section {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

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

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #000;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
    font-family: 'Arial', sans-serif;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #000;
}

.thanks-message {
    font-size: 22px;
    margin-bottom: 40px;
    color: #444;
}

.thanks-info {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Arial', sans-serif;
}

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

.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    color: #000;
}

.thanks-next-steps ul {
    list-style: none;
    padding: 0;
}

.thanks-next-steps li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.thanks-next-steps li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 20px;
}

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

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #000;
    font-family: 'Arial', sans-serif;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #111;
    font-family: 'Arial', sans-serif;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

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

.legal-content li {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
}

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

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.disclaimer {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    font-family: 'Arial', sans-serif;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

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

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

    .editorial-content {
        font-size: 17px;
    }

    .editorial-lead {
        font-size: 20px;
    }

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

    .editorial-quote p {
        font-size: 22px;
    }

    .nav-links {
        gap: 15px;
    }

    .form-row {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .editorial-image,
    .editorial-inline-image {
        width: calc(100% + 40px);
        margin-left: -20px;
    }

    .editorial-article {
        padding: 0 20px;
    }

    .contact-form-section {
        padding: 30px 20px;
    }

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

    .editorial-final-cta {
        padding: 40px 25px;
    }
}