/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #2d2d2d;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: #1a5f7a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3d52;
}

ul {
    list-style-position: inside;
}

ol {
    list-style-position: inside;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a5f7a;
    letter-spacing: 0.5px;
}

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

.nav-menu li a {
    color: #2d2d2d;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #1a5f7a;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #2d2d2d;
    margin: 3px 0;
    transition: 0.3s;
}

/* Editorial Wrapper */
.editorial-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

/* Hero Editorial */
.hero-editorial {
    padding: 4rem 5%;
    background-color: #fafafa;
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto 3rem;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.hero-image-container {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

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

/* Editorial Text Section */
.editorial-text-section {
    padding: 4rem 5%;
}

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

.editorial-text-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.editorial-text-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.feature-inline {
    margin: 2.5rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid #1a5f7a;
}

.feature-inline h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.feature-inline p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Process List */
.process-list {
    margin: 2rem 0;
}

.process-list li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    padding-left: 0.5rem;
}

.process-list li strong {
    color: #1a5f7a;
    font-weight: 600;
}

/* Image Break */
.image-break {
    margin: 4rem 0;
    padding: 0 5%;
}

.image-break img {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
}

.image-caption {
    max-width: 1200px;
    margin: 1rem auto 0;
    text-align: center;
    font-style: italic;
    color: #6a6a6a;
    font-size: 0.95rem;
}

/* Inline CTA Box */
.inline-cta-box {
    background-color: #f0f8fa;
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    border-radius: 8px;
    text-align: center;
}

.inline-cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.inline-cta-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* CTA Buttons */
.cta-inline {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: #1a5f7a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #0d3d52;
    color: #ffffff;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5f7a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0d3d52;
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #1a5f7a;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid #1a5f7a;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a5f7a;
    color: #ffffff;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid #ffffff;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #1a5f7a;
}

.btn-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #1a5f7a;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-large:hover {
    background-color: #0d3d52;
    color: #ffffff;
}

/* CTA Section Colored */
.cta-section-colored {
    background-color: #1a5f7a;
    padding: 4rem 5%;
    color: #ffffff;
}

.cta-section-colored h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-section-colored p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #e8f4f8;
}

/* Testimonials */
.testimonial-section {
    padding: 4rem 5%;
    background-color: #f9f9f9;
}

.testimonial {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #1a5f7a;
    border-radius: 5px;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    font-size: 0.95rem;
    font-style: normal;
    color: #6a6a6a;
    font-weight: 600;
}

/* FAQ */
.faq-item {
    margin: 2rem 0;
}

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 5%;
    background-color: #f0f8fa;
}

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

/* Page Header Editorial */
.page-header-editorial {
    padding: 3rem 5% 2rem;
    background-color: #fafafa;
    border-bottom: 1px solid #e8e8e8;
}

.page-header-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #1a1a1a;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Service Cards Editorial */
.service-card-editorial {
    display: flex;
    flex-direction: column;
    padding: 3rem 5%;
    gap: 2rem;
}

.service-card-editorial.reverse {
    background-color: #fafafa;
}

.service-image-side {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.service-image-side img {
    width: 100%;
    height: auto;
}

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

.service-content-side h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content-side p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #3a3a3a;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
}

.price-box {
    margin: 2rem 0 1.5rem;
    padding: 1.5rem;
    background-color: #f0f8fa;
    border-radius: 5px;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #6a6a6a;
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5f7a;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: #1a5f7a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #0d3d52;
}

/* Info Box */
.info-box {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
    border-left: 3px solid #1a5f7a;
}

.info-box h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.info-box ul {
    list-style-position: inside;
}

.info-box li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #3a3a3a;
}

/* Contact Info Section */
.contact-info-section {
    padding: 3rem 5%;
}

.contact-box {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #fafafa;
    border-radius: 8px;
}

.contact-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-detail {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1a5f7a;
    margin-bottom: 0.8rem;
}

.contact-note {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: italic;
}

.contact-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin: 1.5rem 0;
}

/* Directions */
.directions-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.directions-box h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.directions-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #3a3a3a;
}

/* Stats Section */
.stats-section {
    padding: 4rem 5%;
    background-color: #1a5f7a;
    color: #ffffff;
}

.stats-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-align: center;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #e8f4f8;
}

/* Values List */
.values-list {
    list-style: none;
    margin: 2rem 0;
}

.values-list li {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.values-list li strong {
    color: #1a5f7a;
    font-size: 1.15rem;
}

/* Thank You Section */
.thank-you-section {
    padding: 5rem 5%;
    background-color: #f0f8fa;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #1a5f7a;
    color: #ffffff;
    font-size: 3rem;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.thank-you-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.timeline-item {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 5px;
    text-align: left;
}

.timeline-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a5f7a;
}

.timeline-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
    background-color: #fafafa;
}

.legal-date {
    font-size: 1rem;
    color: #6a6a6a;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #1a5f7a;
}

.legal-page h4 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    color: #1a1a1a;
}

.legal-page ul,
.legal-page ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.cookie-table,
.browser-guide {
    background-color: #ffffff;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
    border: 1px solid #e8e8e8;
}

.browser-guide h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6a6a6a;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #1a1a1a;
}

.modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

/* Service Form */
.service-form {
    margin-top: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d2d2d;
}

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

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #6a6a6a;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1500;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.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 {
    flex: 1;
    min-width: 250px;
    font-size: 0.95rem;
    margin: 0;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: #0d3d52;
}

.btn-cookie-outline {
    padding: 0.7rem 1.5rem;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-cookie-outline:hover {
    background-color: #ffffff;
    color: #2d2d2d;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 3rem 5% 1.5rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.95rem;
    color: #a0a0a0;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: #d0d0d0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3a3a3a;
}

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

/* Responsive Design */
@media (min-width: 768px) {
    .service-card-editorial {
        flex-direction: row;
        align-items: center;
    }

    .service-card-editorial.reverse {
        flex-direction: row-reverse;
    }

    .service-image-side,
    .service-content-side {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid #e8e8e8;
    }

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

    .nav-menu li {
        padding: 0.8rem 5%;
    }

    .hamburger {
        display: flex;
    }

    .hero-editorial h1 {
        font-size: 2rem;
    }

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

    .editorial-text-section h2 {
        font-size: 1.6rem;
    }

    .page-header-editorial h1 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

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

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie,
    .btn-cookie-outline {
        flex: 1;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

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

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .modal-content {
        padding: 1.5rem;
    }
}