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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f5f5f5;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.editorial-content {
    max-width: 740px;
    margin: 0 auto;
    padding: 60px 32px;
}

.hero-editorial {
    margin-bottom: 48px;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
    color: #0a0a0a;
}

.hero-subtext {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

.page-header {
    margin-bottom: 48px;
    text-align: center;
}

.page-header h1 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #0a0a0a;
}

.content-wrapper {
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    margin-bottom: 48px;
    border-radius: 4px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.text-section {
    margin-bottom: 48px;
}

.lead-paragraph {
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 28px;
    color: #2a2a2a;
}

.text-section p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #3a3a3a;
}

.text-section h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #0a0a0a;
}

.text-section h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.text-section ul {
    margin-left: 24px;
    margin-bottom: 24px;
}

.text-section li {
    font-size: 18px;
    margin-bottom: 12px;
    color: #3a3a3a;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 32px 0;
    border-radius: 4px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.inline-cta-block {
    background-color: #f9f9f9;
    padding: 40px 32px;
    margin: 48px 0;
    border-left: 4px solid #2a2a2a;
    text-align: center;
}

.inline-cta-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.cta-link:hover {
    border-bottom-color: #0066cc;
}

.services-preview {
    margin: 64px 0;
    padding: 48px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.services-preview h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #0a0a0a;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.service-card-editorial {
    padding: 32px;
    background-color: #fafafa;
    border-radius: 6px;
}

.service-card-editorial h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-card-editorial p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.price {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #2a2a2a;
}

.contact-inline-section {
    background-color: #f5f5f5;
    padding: 48px 40px;
    margin: 64px 0;
    border-radius: 8px;
}

.contact-inline-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #0a0a0a;
}

.contact-inline-section p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #4a4a4a;
}

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

.service-form label {
    font-size: 15px;
    font-weight: 500;
    color: #2a2a2a;
    margin-bottom: -12px;
}

.service-form input,
.service-form select {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.service-form input:focus,
.service-form select:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    padding: 14px 32px;
    background-color: #2a2a2a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    padding: 24px;
    background-color: #fafafa;
    border-left: 3px solid #ccc;
    margin-top: 48px;
}

.services-detailed {
    margin: 48px 0;
}

.service-detail-block {
    display: flex;
    gap: 40px;
    margin-bottom: 64px;
    align-items: flex-start;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.service-image {
    width: 380px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    background-color: #f0f0f0;
    flex-shrink: 0;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #0a0a0a;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #3a3a3a;
}

.service-duration,
.service-price {
    font-size: 15px;
    font-weight: 600;
    color: #4a4a4a;
    margin-top: 12px;
}

.contact-details-layout {
    display: flex;
    gap: 48px;
    margin: 48px 0;
}

.contact-info-block,
.contact-note-block {
    flex: 1;
}

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

.contact-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #0a0a0a;
}

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

.faq-item {
    margin-bottom: 32px;
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 17px;
    color: #4a4a4a;
}

.cta-section-centered {
    text-align: center;
    padding: 48px 32px;
    margin: 64px 0;
    background-color: #fafafa;
    border-radius: 8px;
}

.cta-section-centered h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2a2a2a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.2s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2a2a2a;
    text-decoration: none;
    border: 2px solid #2a2a2a;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    margin-left: 16px;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: #2a2a2a;
    color: #ffffff;
}

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

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

.thanks-details {
    margin: 40px 0;
    font-size: 18px;
    color: #4a4a4a;
}

.thanks-details p {
    margin-bottom: 20px;
}

#selectedServiceDisplay {
    font-weight: 600;
    color: #2a2a2a;
    font-size: 19px;
}

.thanks-actions {
    margin-top: 48px;
}

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

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #0a0a0a;
}

.legal-content h3 {
    font-size: 19px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #3a3a3a;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #3a3a3a;
}

.legal-content a {
    color: #0066cc;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

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

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #1a1a1a;
}

.cookies-table td {
    color: #3a3a3a;
}

.main-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 32px 24px;
}

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

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

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

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

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

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 24px 32px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-accept {
    background-color: #ffffff;
    color: #2a2a2a;
}

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.8;
}

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

    .nav-links {
        gap: 20px;
    }

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

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

    .page-header h1 {
        font-size: 28px;
    }

    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
    }

    .contact-details-layout {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}