* {
    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: #ffffff;
}

a {
    color: #1a7f8e;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #145d68;
}

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

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

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

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-accept:hover {
    background-color: #145d68;
    transform: translateY(-2px);
}

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #1a7f8e;
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.nav a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #1a7f8e;
}

.hero-editorial {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a2332;
    font-weight: 700;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 30px;
}

.hero-image {
    margin: 50px 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e9ecef;
}

.hero-image img {
    width: 100%;
    height: auto;
}

.content-section {
    padding: 70px 0;
}

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

.content-section p {
    margin-bottom: 20px;
    font-size: 18px;
}

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

.inline-image img {
    width: 100%;
}

.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #1a7f8e;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #145d68;
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: #1a7f8e;
    border: 2px solid #1a7f8e;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background-color: #1a7f8e;
    color: #ffffff;
    transform: translateY(-2px);
}

.insight-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.insight-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a2332;
}

.insight-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial {
    background-color: #ffffff;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #1a7f8e;
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    color: #6c757d;
    font-size: 16px;
}

.services-editorial {
    padding: 70px 0;
}

.services-editorial h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a2332;
}

.services-editorial > .container-narrow > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #495057;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

.service-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a2332;
}

.service-item p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #495057;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

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

.btn-select {
    padding: 12px 25px;
    background-color: #1a7f8e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select:hover {
    background-color: #145d68;
    transform: translateY(-2px);
}

.form-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a2332;
}

.form-section > .container-narrow > p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #6c757d;
}

.inquiry-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.form-info {
    background-color: #e7f3f5;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.form-info p {
    margin: 5px 0;
    font-size: 16px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #1a7f8e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #145d68;
    transform: translateY(-2px);
}

.trust-section {
    padding: 70px 0;
}

.trust-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a2332;
    text-align: center;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #1a7f8e;
    font-size: 17px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-card cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    color: #6c757d;
    font-size: 15px;
}

.disclaimer-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    padding: 20px;
    background-color: #ffffff;
    border-left: 3px solid #ffc107;
    border-radius: 4px;
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 50px 0 20px;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1a7f8e;
}

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

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

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

.footer-column ul li a {
    color: #b8c2cc;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-header {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-header h1 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #1a2332;
}

.services-page {
    padding: 60px 0;
}

.service-detailed {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 2px solid #e9ecef;
}

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

.service-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e9ecef;
}

.service-detailed h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a2332;
}

.service-detailed p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-detailed ul {
    margin: 20px 0 30px 25px;
    font-size: 16px;
}

.service-detailed ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-price-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.price-label {
    font-size: 16px;
    color: #6c757d;
}

.contact-section {
    padding: 60px 0;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.contact-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a2332;
}

.contact-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 14px;
    color: #6c757d;
    margin-top: 10px;
}

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

.contact-additional {
    margin-top: 40px;
}

.contact-additional h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a2332;
}

.contact-additional p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

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

.thanks-details {
    margin: 40px 0;
    padding: 30px;
    background-color: #e7f3f5;
    border-radius: 8px;
}

.thanks-details p {
    font-size: 18px;
    margin: 10px 0;
}

.thanks-image {
    margin: 50px 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e9ecef;
}

.thanks-info {
    text-align: left;
    margin: 40px 0;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a2332;
}

.thanks-info p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a2332;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #1a2332;
}

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

.legal-page p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 15px 0 20px 25px;
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

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

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

.cookies-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cta-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 50px;
}

.cta-section h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a2332;
}

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

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

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

    .content-section h2,
    .insight-section h2,
    .services-editorial h2 {
        font-size: 26px;
    }

    .content-section p,
    .insight-section p {
        font-size: 16px;
    }

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

    .nav {
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }

    .service-details,
    .service-price-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-select,
    .price {
        width: 100%;
        text-align: center;
    }

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

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}