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

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fefefe;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: bold;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.editorial-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

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

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

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-top: 2rem;
}

.content-section {
    margin-bottom: 3.5rem;
}

.content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
}

.inline-cta {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f4f0;
    border-left: 4px solid #d35400;
}

.cta-link {
    color: #d35400;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid #d35400;
    transition: border-color 0.2s;
}

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

.story-section {
    margin-bottom: 4rem;
}

.story-block {
    margin-bottom: 3rem;
}

.story-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.story-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.trust-section {
    background: #f9f9f9;
    padding: 2.5rem 2rem;
    margin: 3rem -1.5rem;
    border-radius: 6px;
}

.trust-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial-block {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-block blockquote {
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 0.8rem;
}

.testimonial-block cite {
    font-size: 0.95rem;
    color: #777;
    font-style: normal;
}

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

.services-preview h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.services-preview > p {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: #666;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.service-card .price {
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    color: #d35400;
    margin: 1rem 0;
    font-family: 'Arial', sans-serif;
}

.service-cta {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: #d35400;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.service-cta:hover {
    background: #e67e22;
}

.insight-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #f4f4f4;
    border-radius: 6px;
}

.insight-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.insight-section > p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.insight-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.insight-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.insight-item p {
    font-size: 1rem;
    color: #555;
}

.form-section {
    margin: 4rem 0;
    padding: 2.5rem;
    background: #f9f9f9;
    border-radius: 6px;
}

.form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-section > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.editorial-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: #3a3a3a;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #d35400;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #e67e22;
}

.final-cta {
    margin: 4rem 0;
    text-align: center;
    padding: 3rem 2rem;
    background: #1a1a1a;
    color: #fff;
    border-radius: 8px;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ddd;
}

.btn-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #d35400;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-large:hover {
    background: #e67e22;
}

.main-footer {
    background: #2c2c2c;
    color: #ddd;
    padding: 3rem 5% 1rem;
    font-family: 'Arial', sans-serif;
}

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

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

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

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

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

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #d35400;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    font-size: 0.85rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: 'Arial', sans-serif;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-accept {
    background: #d35400;
    color: #fff;
}

.btn-accept:hover {
    background: #e67e22;
}

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

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

.page-header {
    margin-bottom: 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.service-detail-card {
    margin-bottom: 3rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.service-price {
    font-size: 1.6rem;
    font-weight: bold;
    color: #d35400;
    font-family: 'Arial', sans-serif;
}

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

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

.service-detail-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.service-detail-content ul {
    margin: 1rem 0 1rem 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.service-action-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.8rem;
    background: #d35400;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    transition: background 0.2s;
}

.service-action-btn:hover {
    background: #e67e22;
}

.service-faq {
    margin: 3rem 0;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 6px;
}

.service-faq h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1rem;
    color: #555;
}

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

.team-member {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 6px;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.team-member p {
    font-size: 1rem;
    color: #555;
}

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

.value-item {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid #d35400;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1rem;
    color: #555;
}

.stats-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: #1a1a1a;
    border-radius: 8px;
    text-align: center;
}

.stats-section h2 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d35400;
    font-family: 'Arial', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #ddd;
    font-family: 'Arial', sans-serif;
}

.quote-block {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #f4f4f4;
    border-left: 6px solid #d35400;
    font-style: italic;
}

.quote-block p {
    font-size: 1.2rem;
    color: #3a3a3a;
}

.contact-content {
    margin: 2rem 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 6px;
}

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

.contact-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.contact-card a {
    color: #d35400;
    text-decoration: none;
    border-bottom: 1px solid #d35400;
}

.contact-card a:hover {
    border-bottom-color: #e67e22;
}

.contact-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

.location-info,
.contact-process,
.contact-faq {
    margin: 3rem 0;
}

.location-info h2,
.contact-process h2,
.contact-faq h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.location-info p,
.contact-process p {
    margin-bottom: 1rem;
}

.location-info ul,
.contact-process ol {
    margin: 1rem 0 1rem 1.5rem;
}

.location-info ul li,
.contact-process ol li {
    margin-bottom: 0.7rem;
}

.contact-process ol li strong {
    color: #1a1a1a;
}

.thanks-page {
    text-align: center;
    padding: 4rem 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-info,
.thanks-tips {
    margin: 2.5rem auto;
    max-width: 600px;
    text-align: left;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 6px;
}

.thanks-info h2,
.thanks-tips h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
}

.thanks-info ul,
.thanks-tips ul {
    list-style-position: inside;
}

.thanks-info ul li,
.thanks-tips ul li {
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: #d35400;
    text-decoration: none;
    border: 2px solid #d35400;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #d35400;
    color: #fff;
}

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

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.update-date {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: #2c2c2c;
}

.legal-section p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.legal-section a {
    color: #d35400;
    text-decoration: none;
    border-bottom: 1px solid #d35400;
}

.legal-section a:hover {
    border-bottom-color: #e67e22;
}

@media screen and (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

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

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

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

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .stats-grid {
        flex-direction: column;
        align-items: center;
    }

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

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