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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #4a8fb3;
    --accent-color: #d4a373;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --font-body: 'Georgia', 'Times New Roman', serif;
    --font-heading: 'Helvetica Neue', Arial, sans-serif;
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

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

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

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

h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

ul, ol {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links li {
    margin: 0;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

.hero-editorial {
    background-color: var(--bg-light);
    padding: 4rem 0 3rem;
}

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

.editorial-headline {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.editorial-intro {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.editorial-image {
    width: 100%;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.editorial-image-small {
    width: 100%;
    margin: 2rem 0;
    border-radius: 4px;
}

.story-section {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.story-section.alternate {
    background-color: var(--bg-light);
}

.story-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.inline-cta {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
}

.cta-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

.visual-break {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.split-text h3 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1.2rem;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.split-image img {
    width: 100%;
    border-radius: 4px;
}

.trust-section {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.trust-section.alternate {
    background-color: var(--bg-light);
}

.testimonial {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    margin: 3rem 0;
    color: var(--text-medium);
}

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

.insight-section {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

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

.insight-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.insight-item h4 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.insight-item p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.7;
}

.services-preview {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.service-cta {
    padding: 0.7rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.urgency-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.emphasis {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
}

.cta-section {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.cta-section h2 {
    margin-top: 0;
}

.booking-form {
    margin-top: 2.5rem;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-body);
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-message {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.inline-cta-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: underline;
}

.inline-cta-link:hover {
    color: var(--secondary-color);
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-column h4 {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.page-content {
    padding: 3rem 0;
}

.services-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-detail-card {
    margin-bottom: 4rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: var(--bg-light);
    flex-wrap: wrap;
    gap: 1rem;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.service-body {
    padding: 2rem;
}

.service-body h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.service-body h4 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.service-body ul {
    margin: 1rem 0;
}

.service-body li {
    line-height: 1.7;
}

.service-image {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.service-duration {
    margin: 2rem 0;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    font-size: 0.95rem;
}

.service-duration strong {
    color: var(--primary-color);
}

.open-form {
    margin-top: 1.5rem;
}

.service-faq {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
}

.services-cta {
    background-color: var(--bg-light);
    padding: 3rem 0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 4px;
    max-width: 600px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
}

.modal-close:hover {
    color: var(--text-dark);
}

.contact-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.contact-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-map {
    margin-top: 3rem;
}

.contact-map img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.map-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-approach {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

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

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

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

.step h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step p {
    margin-bottom: 0;
    line-height: 1.7;
}

.contact-faq {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.final-cta {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.final-cta h2 {
    margin-top: 0;
}

.thanks-page {
    padding: 4rem 0;
    min-height: 60vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 2rem auto;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 2rem auto;
    max-width: 600px;
}

.service-confirmation {
    margin: 2.5rem auto;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    max-width: 600px;
}

.service-confirmation h2 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.service-confirmation p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0;
}

.next-steps {
    margin: 3rem auto;
    max-width: 700px;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    text-align: center;
}

.steps-list {
    list-style: none;
    padding: 0;
}

.steps-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    line-height: 1.7;
}

.contact-info-box {
    margin: 2.5rem auto;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    max-width: 600px;
}

.contact-info-box h3 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.contact-info-box p {
    margin-bottom: 0.5rem;
}

.contact-info-box a {
    font-weight: 600;
}

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

.additional-info {
    margin: 2.5rem auto;
    max-width: 700px;
}

.additional-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.legal-page {
    padding: 3rem 0;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

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

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
    font-size: 1rem;
    line-height: 1.8;
}

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

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

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

.cookie-table td {
    font-size: 0.95rem;
}

.about-intro {
    margin: 2rem 0 3rem;
}

.mission-section,
.approach-section,
.team-section,
.values-section,
.philosophy-section,
.commitment-section {
    margin: 3rem 0;
}

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

.approach-item h3 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.promise-list {
    margin: 1.5rem 0;
}

.promise-list li {
    padding: 0.8rem 0;
    line-height: 1.7;
}

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

.cta-about h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .nav-links {
        gap: 2.5rem;
    }

    .editorial-headline {
        font-size: 3.5rem;
    }

    .split-content {
        flex-direction: row;
        align-items: center;
    }

    .split-text,
    .split-image {
        flex: 1;
    }

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

    .insight-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-item {
        flex: 1 1 calc(50% - 1.25rem);
    }

    .approach-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    .editorial-headline {
        font-size: 4rem;
    }

    .insight-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .service-card {
        flex: 1 1 calc(33.333% - 1.35rem);
    }
}

@media (max-width: 767px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .editorial-headline {
        font-size: 2.2rem;
    }

    .editorial-intro {
        font-size: 1.1rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price {
        font-size: 1.5rem;
    }

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

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