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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7e;
    --accent-color: #e8a547;
    --text-dark: #2d2d2d;
    --text-light: #5a5a5a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4a9d5f;
}

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

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

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-accept:hover {
    background-color: #d99437;
}

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

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

.navigation {
    background-color: var(--bg-white);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

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

.hero-editorial {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.hero-text-center h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
}

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

.editorial-intro,
.story-section,
.trust-section,
.services-reveal,
.why-now-section,
.process-section,
.form-section,
.final-assurance {
    padding: 3.5rem 0;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.editorial-intro p,
.story-section p,
.trust-section p,
.why-now-section p,
.process-section p,
.final-assurance p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.visual-break {
    width: 100%;
    margin: 3rem 0;
}

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

.inline-cta-block {
    padding: 2.5rem 0;
    text-align: center;
}

.cta-inline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background-color: #d99437;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 165, 71, 0.3);
}

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

.principle-item h3 {
    margin-bottom: 0.7rem;
    color: var(--secondary-color);
}

.principle-item p {
    color: var(--text-light);
}

.testimonial-insert {
    background-color: var(--bg-light);
    padding: 3rem 0;
    margin: 3rem 0;
}

blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
}

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

.section-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

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

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

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.duration {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

.sticky-cta-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(26, 58, 82, 0.3);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 58, 82, 0.4);
}

.text-link-cta {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.text-link-cta:hover {
    color: var(--primary-color);
}

.process-steps {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background-color: var(--accent-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step h3 {
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
}

.consultation-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    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);
}

.form-submit-btn {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background-color: #d99437;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 165, 71, 0.3);
}

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

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

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand strong {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links {
    flex: 0 0 auto;
}

.footer-links h4 {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

.page-header {
    background-color: var(--bg-light);
    padding: 4rem 0 3rem;
    margin-bottom: 3rem;
}

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

.header-intro {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-story,
.values-section,
.team-philosophy,
.approach-section,
.commitment-section {
    padding: 3rem 0;
}

.value-item {
    margin-bottom: 2.5rem;
}

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

.approach-list li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.about-cta-section,
.services-cta-section,
.contact-final-cta {
    background-color: var(--bg-light);
    padding: 3rem 0;
    margin-top: 3rem;
    text-align: center;
}

.about-cta-section h3,
.services-cta-section h3,
.contact-final-cta h3 {
    margin-bottom: 1rem;
}

.about-cta-section p,
.services-cta-section p,
.contact-final-cta p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #d99437;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 165, 71, 0.3);
}

.service-detailed {
    padding: 3rem 0;
}

.service-full-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    margin-bottom: 0;
    flex: 1;
    min-width: 250px;
}

.service-price-tag {
    background-color: var(--accent-color);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-size: 1.3rem;
    font-weight: 700;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-includes {
    margin-bottom: 1.5rem;
}

.service-includes h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.service-includes ul {
    padding-left: 1.5rem;
}

.service-includes li {
    margin-bottom: 0.6rem;
    color: var(--text-light);
}

.service-ideal {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
}

.additional-info {
    background-color: var(--bg-light);
    padding: 3rem 0;
    margin-top: 3rem;
}

.additional-info p {
    margin-bottom: 1.2rem;
}

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

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

.contact-block h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

.contact-block a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

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

.contact-note {
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.contact-approach,
.contact-faq,
.contact-privacy {
    padding: 3rem 0;
}

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

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}

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

.thanks-section {
    padding: 5rem 0;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-section h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.thanks-info {
    margin: 2rem 0;
}

.selected-service {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 6px;
    font-size: 1.05rem;
}

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

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-num {
    background-color: var(--accent-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
}

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

.thanks-contact-info h3 {
    margin-bottom: 1rem;
}

.email-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #d99437;
}

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

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

.thanks-additional {
    background-color: var(--bg-light);
    padding: 3rem 0;
    text-align: left;
}

.resource-list {
    margin-top: 1.5rem;
    padding-left: 1.5rem;
}

.resource-list li {
    margin-bottom: 0.8rem;
}

.resource-list a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

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

.legal-page {
    background-color: var(--bg-white);
}

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

.legal-section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.legal-section h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-section p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

.legal-section li {
    margin-bottom: 0.6rem;
    color: var(--text-light);
}

.legal-section a {
    color: var(--accent-color);
    text-decoration: none;
}

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

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

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

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

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

@media (max-width: 768px) {
    .hero-text-center h1 {
        font-size: 2rem;
    }

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

    .navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

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

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

    .service-price-tag {
        align-self: flex-start;
    }

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

    .cookie-actions {
        justify-content: center;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
