:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7f;
    --accent-color: #d4a574;
    --text-dark: #1f1f1f;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.nav-editorial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.editorial-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 5%;
}

.hero-editorial {
    margin-bottom: 4rem;
    text-align: left;
}

.hero-editorial h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-light);
    font-weight: 400;
}

.editorial-section {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.editorial-section.reverse {
    flex-direction: column-reverse;
}

.editorial-image {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

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

.editorial-text {
    width: 100%;
}

.editorial-text.full-width {
    width: 100%;
}

.editorial-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.editorial-text h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.editorial-text p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.editorial-text ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-light);
}

.editorial-text li {
    margin-bottom: 0.6rem;
}

.inline-cta {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 2px;
    margin-top: 1rem;
}

.inline-cta:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.quote-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.quote-section blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--primary-color);
}

.quote-section cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-light);
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--white);
    position: relative;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.service-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(to bottom, #fff9f2 0%, var(--white) 100%);
}

.service-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.btn-service {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
}

.btn-service:hover {
    background: var(--primary-color);
}

.testimonial-inline {
    margin: 4rem 0;
    padding: 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
}

.testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-section {
    margin: 4rem 0;
    padding: 3rem;
    text-align: center;
    background: var(--bg-light);
    border-radius: 8px;
}

.cta-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.form-section {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.form-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

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

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.95rem;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
}

.btn-submit:hover {
    background: var(--primary-color);
}

.final-thoughts {
    margin: 4rem 0 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 5% 1rem;
    margin-top: 5rem;
}

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: var(--white);
    opacity: 0.9;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    opacity: 0;
    transform: translateY(100px);
    transition: var(--transition);
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.btn-sticky {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-sticky:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid var(--secondary-color);
    padding: 1.5rem 5%;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    color: var(--text-dark);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    font-size: 0.95rem;
}

.btn-cookie:first-child {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-cookie:first-child:hover {
    background: var(--primary-color);
}

.btn-cookie.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-cookie.btn-secondary:hover {
    border-color: var(--text-dark);
}

.stats-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

.values-section {
    margin: 4rem 0;
}

.values-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.service-detail {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.service-detail.featured {
    border-color: var(--accent-color);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: var(--bg-light);
    border-bottom: 2px solid var(--border-color);
}

.service-detail-header h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
}

.service-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-detail-content {
    padding: 2rem;
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.service-detail-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-light);
}

.service-detail-content li {
    margin-bottom: 0.8rem;
}

.faq-section {
    margin: 4rem 0;
}

.faq-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.contact-form-wrapper {
    padding: 2rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form-wrapper p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.process-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.process-list li {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.thanks-info {
    margin: 3rem 0;
    text-align: left;
}

.thanks-info h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.thanks-additional {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: left;
}

.thanks-additional h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-page section {
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 1.5rem 0 0.8rem;
}

.legal-page p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-light);
}

.legal-page li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    color: var(--primary-color);
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .editorial-section {
        flex-direction: row;
        gap: 3rem;
    }

    .editorial-section.reverse {
        flex-direction: row-reverse;
    }

    .editorial-image {
        width: 50%;
    }

    .editorial-text {
        width: 50%;
    }

    .services-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 280px;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1;
        min-width: 45%;
    }

    .contact-wrapper {
        flex-direction: row;
    }

    .contact-info,
    .contact-form-wrapper {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .hero-editorial h1 {
        font-size: 2.2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: var(--transition);
        gap: 1.5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }
}