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

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.editorial-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 30px 80px;
}

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

.hero-image-container {
    width: 100%;
    margin-bottom: 30px;
    background-color: #e1e8ed;
    overflow: hidden;
}

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

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

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

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

.text-block {
    font-size: 18px;
    line-height: 1.8;
}

.text-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 10px;
    color: #1a252f;
    font-weight: 600;
}

.text-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #2c3e50;
    font-weight: 600;
}

.text-block p {
    margin-bottom: 20px;
}

.text-block ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.text-block li {
    margin-bottom: 10px;
}

.inline-image {
    margin: 50px 0;
    background-color: #f8f9fa;
}

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

.image-caption {
    padding: 15px 20px;
    font-size: 15px;
    color: #5a6c7d;
    font-style: italic;
    background-color: #f8f9fa;
}

.insight-box {
    background-color: #f0f5f9;
    padding: 35px 30px;
    border-left: 4px solid #3498db;
    margin: 40px 0;
}

.insight-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.insight-box p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #34495e;
}

.insight-box ul {
    margin-left: 20px;
    margin-top: 15px;
}

.insight-box li {
    margin-bottom: 12px;
    font-size: 17px;
    color: #34495e;
}

.services-inline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #e1e8ed;
    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: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
}

.cta-button {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.cta-button:hover {
    background-color: #1a252f;
}

.testimonial-inline {
    background-color: #f8f9fa;
    padding: 40px 35px;
    margin: 50px 0;
    border-left: 3px solid #95a5a6;
}

.testimonial-inline blockquote {
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    color: #34495e;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #7f8c8d;
}

.form-section {
    background-color: #f0f5f9;
    padding: 40px 35px;
    margin: 60px 0;
}

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

.form-section p {
    margin-bottom: 25px;
    font-size: 16px;
    color: #5a6c7d;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d1d8dd;
    background-color: #ffffff;
    font-family: inherit;
    color: #2c3e50;
}

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

.submit-button {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #1a252f;
}

.disclaimer-section {
    background-color: #fff8e1;
    padding: 25px 30px;
    margin: 50px 0;
    border-left: 3px solid #ffc107;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #5a5a5a;
}

.references-section {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e1e8ed;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.reference-list {
    font-size: 14px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-left: 20px;
}

.reference-list li {
    margin-bottom: 10px;
}

.reference-list a {
    color: #3498db;
    text-decoration: none;
}

.reference-list a:hover {
    text-decoration: underline;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.citation:hover {
    text-decoration: underline;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

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

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

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

.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: 14px;
    transition: color 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    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;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.page-header {
    margin-bottom: 50px;
}

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

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    overflow: hidden;
}

.service-image {
    width: 100%;
    background-color: #e1e8ed;
}

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

.service-detail-content {
    padding: 35px 30px;
}

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a252f;
}

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

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #5a6c7d;
}

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

.service-detail-content li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #5a6c7d;
}

.service-duration {
    font-size: 15px;
    color: #7f8c8d;
    margin-top: 20px;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 25px 0 20px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 30px 0;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 10px;
}

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

.thanks-container {
    text-align: center;
    padding: 80px 30px;
}

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
}

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

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

.back-button {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #1a252f;
}

.legal-content {
    max-width: 900px;
}

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

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

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

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

.cookie-table td {
    font-size: 15px;
    color: #5a6c7d;
}

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

    .nav-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .lead {
        font-size: 18px;
    }

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

    .editorial-content {
        padding: 30px 20px;
    }

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

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

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

    .cookie-btn {
        width: 100%;
    }
}