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

:root {
    --primary-color: #2d5a6b;
    --secondary-color: #5a8fa3;
    --accent-color: #c49a6c;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4a9d6f;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--bg-light);
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-editorial {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.editorial-layout {
    max-width: 100%;
}

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

.hero-editorial {
    background-color: var(--bg-light);
    padding: 80px 30px 40px;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
}

.hero-editorial h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 400;
}

.lead-text {
    font-size: 21px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-image {
    max-width: 900px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--text-dark);
}

h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

p {
    margin-bottom: 20px;
}

.inline-image-wrapper {
    margin: 40px 0;
}

.inline-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

a {
    color: var(--primary-color);
    text-decoration: underline;
}

a:hover {
    color: var(--secondary-color);
}

.services-preview {
    background-color: var(--bg-white);
    padding: 80px 30px;
}

.service-cards-editorial {
    max-width: 900px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-content {
    padding: 35px;
}

.service-content h3 {
    margin-bottom: 12px;
}

.service-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

.cta-button-secondary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
}

.cta-button-secondary:hover {
    opacity: 0.9;
}

.how-it-works {
    background-color: var(--bg-light);
    padding: 60px 30px;
    margin: 60px -30px;
    border-radius: 8px;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    margin-top: 30px;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.testimonials-editorial {
    background-color: var(--bg-light);
    padding: 80px 30px;
}

.testimonial {
    background-color: var(--bg-white);
    padding: 35px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.testimonial p {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 15px;
}

.form-section {
    background-color: var(--bg-white);
    padding: 80px 30px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.submit-button {
    background-color: var(--success-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: opacity 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    width: 100%;
}

.submit-button:hover {
    opacity: 0.9;
}

.disclaimer-section {
    background-color: var(--bg-light);
    padding: 60px 30px;
}

.disclaimer {
    background-color: #fff8e6;
    border-left: 4px solid #e8b44f;
    padding: 25px;
    border-radius: 4px;
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--text-dark);
}

.references-section {
    background-color: var(--bg-white);
    padding: 40px 30px;
}

.references-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.references-list {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 8px;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 30px 30px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--bg-white);
}

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

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

.footer-column a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--bg-white);
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--bg-light);
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 25px 30px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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;
}

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

.cookie-content a {
    color: var(--bg-white);
    text-decoration: underline;
}

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

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

.cookie-accept {
    background-color: var(--success-color);
    color: var(--bg-white);
}

.cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

.page-header {
    padding-top: 80px;
}

.services-detailed {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 30px;
}

.service-detail {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 1;
    min-width: 0;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-content {
    flex: 1;
    min-width: 0;
}

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.service-detail-content li {
    margin-bottom: 10px;
}

.cta-section {
    text-align: center;
    background-color: var(--bg-light);
    padding: 80px 30px;
    margin: 60px -30px;
    border-radius: 8px;
}

.about-story {
    background-color: var(--bg-white);
    padding: 60px 30px;
}

.team-section {
    background-color: var(--bg-light);
    padding: 80px 30px;
}

.team-grid {
    max-width: 1200px;
    margin: 50px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-member {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    width: calc(50% - 20px);
    min-width: 280px;
    max-width: 400px;
}

.team-member img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-member h3 {
    padding: 20px 25px 5px;
    margin-bottom: 5px;
    font-size: 20px;
}

.specialization {
    padding: 0 25px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-member p:not(.specialization) {
    padding: 0 25px 25px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.values-section {
    background-color: var(--bg-white);
    padding: 80px 30px;
}

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

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.approach-section {
    background-color: var(--bg-light);
    padding: 80px 30px;
}

.approach-list {
    margin-left: 20px;
    margin-top: 30px;
}

.approach-list li {
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-info-section {
    padding: 60px 30px;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
}

.contact-card h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.thanks-page {
    text-align: center;
    padding: 100px 30px;
}

.thanks-icon {
    font-size: 80px;
    color: var(--success-color);
    margin-bottom: 30px;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.what-next {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
    margin-top: 20px;
}

.next-steps li {
    counter-increment: step-counter;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
}

.next-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid var(--success-color);
}

.service-selected {
    font-size: 16px;
}

.tips-box,
.contact-box {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.tips-box h3,
.contact-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.tips-box ul {
    margin-left: 20px;
}

.tips-box li {
    margin-bottom: 8px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.legal-page {
    padding: 80px 30px;
}

.updated {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
}

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

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

.legal-page ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-page li {
    margin-bottom: 10px;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 15px;
}

.gdpr-table th,
.cookies-table th {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.gdpr-table td,
.cookies-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

.gdpr-table tr:last-child td,
.cookies-table tr:last-child td {
    border-bottom: none;
}

.cookie-reset-button {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

.cookie-reset-button:hover {
    opacity: 0.9;
}

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

    .nav-links {
        gap: 20px;
    }

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

    h2 {
        font-size: 28px;
    }

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

    .service-detail {
        flex-direction: column;
    }

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

    .team-member {
        width: 100%;
    }

    .contact-grid {
        flex-direction: column;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

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