:root {
    --color-primary: #1a365d;
    --color-secondary: #2c5282;
    --color-accent: #3182ce;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-bg: #ffffff;
    --color-bg-light: #f7fafc;
    --color-bg-alt: #edf2f7;
    --color-border: #e2e8f0;
    --color-success: #38a169;
    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --max-width: 1200px;
    --content-narrow: 720px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.3;
}

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

h2 {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

.ad-disclosure {
    background-color: var(--color-bg-alt);
    color: var(--color-text-light);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

.header {
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 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(--color-primary);
}

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

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

.nav-links a {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: transform 0.2s ease;
}

.content-narrow {
    max-width: var(--content-narrow);
    margin: 0 auto;
    padding: 0 2rem;
}

.content-wide {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-editorial {
    position: relative;
}

.hero-image-container {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    background-color: var(--color-bg-alt);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: var(--content-narrow);
    margin: -6rem auto 0;
    padding: 3rem;
    background-color: var(--color-bg);
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-bg);
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: var(--color-secondary);
    color: var(--color-bg);
    transform: translateY(-2px);
}

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

.cta-button.secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-bg);
}

.editorial-intro {
    padding: 5rem 0;
}

.editorial-intro h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.editorial-intro p {
    font-size: 1.125rem;
}

.image-text-section {
    padding: 5rem 0;
    background-color: var(--color-bg-light);
}

.image-text-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.image-side {
    flex: 1;
    background-color: var(--color-bg-alt);
}

.image-side img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.text-side {
    flex: 1;
}

.text-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--color-accent);
}

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

.image-text-section.reverse .image-text-wrapper {
    flex-direction: row-reverse;
}

.services-preview {
    padding: 5rem 0;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-image-container {
    height: 180px;
    overflow: hidden;
    background-color: var(--color-bg-alt);
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.service-card .price {
    display: block;
    padding: 1rem 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.125rem;
}

.card-link {
    display: block;
    padding: 1rem 1.5rem;
    background-color: var(--color-bg-light);
    color: var(--color-accent);
    font-weight: 600;
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.card-link:hover {
    background-color: var(--color-primary);
    color: var(--color-bg);
}

.editorial-section {
    padding: 5rem 0;
}

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

.inline-cta {
    text-align: center;
    margin-top: 2rem;
}

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

.trust-items {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.trust-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-bg);
}

.trust-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    max-width: 180px;
}

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

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

.form-section > .content-narrow > p {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

form {
    background-color: var(--color-bg);
    padding: 2rem;
    border: 1px solid var(--color-border);
}

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

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

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

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

.submit-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--color-primary);
    color: var(--color-bg);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-button:hover {
    background-color: var(--color-secondary);
}

.footer {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 2;
    min-width: 280px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-bg);
    display: block;
    margin-bottom: 1rem;
}

.footer-links,
.footer-legal {
    flex: 1;
    min-width: 160px;
}

.footer-links h4,
.footer-legal h4 {
    color: var(--color-bg);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-bg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.disclaimer {
    font-size: 0.8125rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 280px;
    font-size: 0.9375rem;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

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

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

.cookie-btn.reject {
    background-color: var(--color-bg-alt);
    color: var(--color-text);
}

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

.page-hero {
    position: relative;
    background-color: var(--color-bg-alt);
}

.page-hero .hero-image-container {
    height: 40vh;
    min-height: 300px;
    max-height: 400px;
}

.page-hero-content {
    max-width: var(--content-narrow);
    margin: -4rem auto 0;
    padding: 2rem 3rem;
    background-color: var(--color-bg);
    position: relative;
    z-index: 10;
    text-align: center;
}

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

.page-hero.compact .page-hero-content {
    margin: 0 auto;
    background-color: transparent;
}

.values-section {
    padding: 5rem 0;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 240px;
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--color-accent);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h3 {
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

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

.timeline-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent);
    min-width: 60px;
}

.timeline-content {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
    flex: 1;
}

.timeline-item:last-child .timeline-content {
    border-bottom: none;
    padding-bottom: 0;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--color-text-light);
    margin: 0;
}

.services-detailed {
    padding: 3rem 0 5rem;
}

.service-detail-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    margin-bottom: 2rem;
}

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

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

.price-tag {
    background-color: var(--color-primary);
    color: var(--color-bg);
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.service-detail-content {
    display: flex;
    gap: 3rem;
    padding: 2rem;
    flex-wrap: wrap;
}

.service-description {
    flex: 2;
    min-width: 280px;
}

.service-description h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    font-family: var(--font-primary);
}

.service-description ul {
    list-style: disc;
    padding-left: 1.5rem;
}

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

.service-includes {
    flex: 1;
    min-width: 240px;
}

.service-includes h4 {
    color: var(--color-text);
    font-family: var(--font-primary);
    margin-bottom: 1rem;
}

.check-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--color-success);
    border-radius: 50%;
}

.service-price-details {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-price-details .label {
    flex: 1;
    min-width: 140px;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.service-price-details .value {
    font-weight: 700;
    color: var(--color-primary);
    min-width: 100px;
    text-align: right;
}

.pricing-note {
    padding: 0 0 3rem;
}

.note-box {
    background-color: var(--color-bg-alt);
    padding: 2rem;
    border-left: 4px solid var(--color-accent);
}

.note-box h3 {
    margin-bottom: 1rem;
}

.note-box p:last-child {
    margin-bottom: 0;
}

.contact-section {
    padding: 5rem 0;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 320px;
}

.contact-card {
    background-color: var(--color-bg-light);
    padding: 2rem;
    margin-bottom: 2rem;
}

.contact-card h2 {
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
}

.detail-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.detail-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.detail-item p {
    margin: 0;
    color: var(--color-text-light);
}

.directions-card {
    padding: 2rem;
    border: 1px solid var(--color-border);
}

.directions-card h3 {
    margin-bottom: 1rem;
}

.directions-list {
    list-style: none;
    margin-top: 1rem;
}

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

.contact-image {
    flex: 1;
    min-width: 320px;
    background-color: var(--color-bg-alt);
}

.contact-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

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

.additional-info h2 {
    margin-bottom: 1.5rem;
}

.info-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.faq-section {
    padding: 5rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    padding: 1.5rem;
    background-color: var(--color-bg-light);
    border-left: 4px solid var(--color-accent);
}

.faq-item h3 {
    margin-bottom: 0.75rem;
    font-family: var(--font-primary);
}

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

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--color-success);
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

.thanks-content h1 {
    margin-bottom: 1.5rem;
}

.service-selected {
    background-color: var(--color-bg-light);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

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

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

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

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

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

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

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

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

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

.legal-page h1 {
    margin-bottom: 1.5rem;
}

.legal-intro {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

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

.legal-page h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.legal-page ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

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

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
    }

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

    .nav-links li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content {
        margin: -3rem 1rem 0;
        padding: 2rem;
    }

    .image-text-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .image-text-section.reverse .image-text-wrapper {
        flex-direction: column;
    }

    .image-side img {
        height: 300px;
    }

    .services-cards {
        flex-direction: column;
    }

    .trust-items {
        gap: 2rem;
    }

    .footer-main {
        gap: 2rem;
    }

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

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

    .contact-layout {
        flex-direction: column;
    }

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