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

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

.ad-disclosure {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
}

.ad-disclosure p {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

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

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

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

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

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

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

.editorial-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-editorial {
    margin: 40px 0 60px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 4px;
    background-color: #e9ecef;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    padding: 60px 40px 40px;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 42px;
    line-height: 1.3;
    font-weight: 400;
    max-width: 700px;
}

.content-flow {
    padding: 60px 0;
}

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #34495e;
}

.narrow-content p {
    margin-bottom: 24px;
    font-size: 18px;
}

.narrow-content h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    font-weight: 400;
    color: #1a1a1a;
}

.narrow-content h3 {
    font-size: 24px;
    margin: 35px 0 20px;
    font-weight: 600;
    color: #2c3e50;
}

.inline-image-block {
    margin: 45px 0;
    background-color: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c5f8d;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

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

.testimonial-inline {
    background-color: #f8f9fa;
    border-left: 4px solid #2c5f8d;
    padding: 30px;
    margin: 40px 0;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 19px;
    margin-bottom: 15px;
    color: #495057;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 16px;
    color: #6c757d;
}

.trust-section {
    background-color: #e8f4f8;
    padding: 40px;
    margin: 50px 0;
    border-radius: 4px;
}

.trust-section h3 {
    margin-top: 0;
    color: #2c5f8d;
}

.services-editorial {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.service-card {
    max-width: 760px;
    margin: 0 auto 50px;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #dee2e6;
}

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

.service-content {
    padding: 35px 40px;
}

.service-content h3 {
    font-size: 26px;
    margin: 0 0 20px;
    color: #2c3e50;
    font-weight: 600;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f8d;
    margin: 25px 0 20px;
    font-family: 'Arial', sans-serif;
}

.btn-service {
    padding: 14px 32px;
    background-color: #2c5f8d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-service:hover {
    background-color: #1e4366;
}

.form-section {
    background-color: #fff;
    padding: 80px 20px;
}

.service-display {
    background-color: #e8f4f8;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
    border-left: 4px solid #2c5f8d;
}

.service-display p {
    margin: 0;
    font-size: 17px;
    color: #2c5f8d;
    font-weight: 600;
}

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

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2c5f8d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

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

.btn-submit:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.disclaimer-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 30px;
    margin: 50px 0;
    border-radius: 4px;
}

.disclaimer-box h3 {
    margin-top: 0;
    color: #856404;
    font-size: 20px;
}

.disclaimer-box p {
    font-size: 15px;
    color: #856404;
    line-height: 1.6;
    margin: 0;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover {
    color: #fff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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;
    margin: 0;
    font-size: 15px;
    color: #495057;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #2c5f8d;
    color: #fff;
}

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

.btn-reject {
    background-color: #6c757d;
    color: #fff;
}

.btn-reject:hover {
    background-color: #5a6268;
}

.contact-page {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 400;
}

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

.contact-info h2 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #2c5f8d;
}

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

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

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

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 400;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #34495e;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-page ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #495057;
}

.thanks-page {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #e8f4f8;
    border-radius: 4px;
}

.thanks-page h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c5f8d;
    font-weight: 400;
}

.thanks-page p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-page .btn-primary {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 28px;
        padding: 40px 20px 20px;
    }

    .nav-links {
        gap: 15px;
    }

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

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

    .narrow-content h2 {
        font-size: 26px;
    }

    .service-content {
        padding: 25px 20px;
    }

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

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