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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #4a4a4a;
    --accent-color: #d4af37;
    --text-color: #2c2c2c;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --link-color: #1a1a1a;
    --link-hover: #d4af37;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    font-size: 18px;
}

a {
    color: var(--link-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

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

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}

.editorial-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.narrow-text {
    max-width: 700px;
    margin: 0 auto;
}

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

.hero-text-narrow {
    margin-bottom: 3rem;
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-top: 1.5rem;
}

.hero-image {
    width: 100%;
    margin: 2rem 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.lead {
    font-size: 1.2rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

.text-section {
    margin: 3rem 0;
}

.image-break {
    margin: 4rem 0;
    width: 100%;
}

.image-break img {
    width: 100%;
    height: auto;
    display: block;
}

.inline-cta {
    display: inline-block;
    margin: 1.5rem 0;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

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

.quote-inline {
    font-style: italic;
    font-size: 1.2rem;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
    background-color: var(--light-bg);
    color: var(--secondary-color);
}

.list-editorial {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    list-style-position: outside;
}

.list-editorial li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.cta-section-inline {
    margin: 4rem 0;
}

.cta-box {
    background-color: var(--light-bg);
    padding: 3rem 2.5rem;
    text-align: center;
    border-top: 3px solid var(--accent-color);
}

.cta-box h3 {
    margin-top: 0;
    font-size: 1.8rem;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.btn-primary,
.btn-secondary,
.btn-large,
.btn-submit {
    display: inline-block;
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    border-radius: 3px;
}

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

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

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    width: 100%;
    margin-top: 1rem;
}

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

.services-preview {
    margin: 4rem 0;
}

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

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.service-desc {
    color: var(--secondary-color);
    margin: 1rem 0;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.testimonial-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.testimonial-main {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--secondary-color);
    text-align: center;
    padding: 0 1rem;
}

.testimonial-author {
    text-align: center;
    font-weight: 600;
    margin-top: 1.5rem;
    color: var(--primary-color);
}

.cta-section-story {
    margin: 5rem 0;
    text-align: center;
}

.form-section {
    margin: 5rem 0;
    padding: 3rem 2rem;
    background-color: var(--light-bg);
}

.contact-form {
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

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

.final-note {
    font-style: italic;
    text-align: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin: 4rem 0;
}

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

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

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

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

.footer-bottom p {
    color: #999999;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.sticky-cta:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.btn-cookie-accept {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

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

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

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

.team-intro {
    margin: 3rem 0;
}

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

.values-list {
    margin-top: 2rem;
}

.value-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.value-item h3 {
    margin-top: 0;
    color: var(--accent-color);
}

.services-detailed {
    margin: 3rem 0;
}

.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-header {
    margin-bottom: 1.5rem;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 0.5rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
}

.contact-info-section {
    margin: 3rem 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.contact-item p {
    color: var(--secondary-color);
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

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

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

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

.thanks-next-steps h2 {
    text-align: center;
}

.thanks-next-steps ol {
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
}

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

.thanks-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.legal-section {
    margin: 2rem 0;
}

.legal-section h2 {
    margin-top: 3rem;
}

.legal-section h3 {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-content {
        padding: 0 1rem;
    }

    .editorial-content {
        padding: 2rem 1rem;
    }

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

    .testimonial-main {
        font-size: 1.2rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .services-cards {
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

    .thanks-actions a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .form-section {
        padding: 2rem 1rem;
    }
}