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

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

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
}

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

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

.nav-links a:hover {
    color: #1a5490;
}

.editorial-content {
    background-color: #ffffff;
}

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

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text-overlay h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 30px;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 30px;
    font-weight: 500;
}

.editorial-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 50px;
    margin-bottom: 25px;
    line-height: 1.3;
}

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

.editorial-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 22px;
}

.inline-image-block {
    width: 100%;
    margin: 50px 0;
    background-color: #ecf0f1;
}

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

.testimonial-inline {
    background-color: #f8f9fa;
    border-left: 4px solid #1a5490;
    padding: 25px 30px;
    margin: 40px 0;
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
}

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

.inline-cta-box {
    background: linear-gradient(135deg, #1a5490 0%, #2874c4 100%);
    color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 50px 0;
}

.inline-cta-box h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 15px;
}

.inline-cta-box p {
    color: #ffffff;
    margin-bottom: 25px;
}

.cta-link {
    display: inline-block;
    background-color: #ffffff;
    color: #1a5490;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.services-showcase {
    background-color: #f8f9fa;
    padding: 70px 0;
    margin: 60px 0;
}

.section-intro {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 50px;
    text-align: center;
}

.service-cards-editorial {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.service-card {
    background-color: #ffffff;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.service-content h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 15px;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a5490;
    margin: 20px 0;
}

.select-service-btn {
    background-color: #1a5490;
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.form-section {
    background-color: #ecf0f1;
    padding: 70px 0;
    margin: 60px 0;
}

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

.selected-service-display {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 30px;
}

.selected-service-display p {
    margin-bottom: 8px;
    color: #155724;
}

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

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

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

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

.submit-btn {
    background-color: #1a5490;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.final-section {
    margin: 60px auto;
}

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

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

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

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #34495e;
    border-radius: 5px;
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 14px;
    color: #95a5a6;
}

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

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

.cookie-content a {
    color: #5dade2;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    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: #95a5a6;
    color: #ffffff;
}

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

.thanks-page {
    min-height: 60vh;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: #495057;
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    padding: 20px;
    margin: 30px 0;
    color: #155724;
}

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

.btn-primary {
    display: inline-block;
    background-color: #1a5490;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #6c757d;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.contact-info-block {
    margin: 50px 0;
}

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

.contact-item h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.contact-detail {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
}

.cta-box-inline {
    background-color: #e8f4f8;
    border: 2px solid #1a5490;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 50px 0;
}

.cta-box-inline h3 {
    color: #1a5490;
    margin-top: 0;
    margin-bottom: 15px;
}

.cta-box-inline p {
    color: #495057;
    margin-bottom: 25px;
}

.legal-content {
    padding-top: 40px;
    padding-bottom: 80px;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.legal-date {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 45px;
    margin-bottom: 20px;
}

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

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

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.non-clickable {
    color: #495057;
}

.services-detailed {
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 60px;
}

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

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

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #1a5490;
    margin: 25px 0;
}

.service-list {
    list-style: none;
    margin: 25px 0;
}

.service-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.6;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    .navigation {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

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

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

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

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

    .cookie-buttons {
        justify-content: center;
    }

    .service-image {
        height: 200px;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}