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

:root {
    --color-primary: #2d5a3d;
    --color-primary-dark: #1e3d29;
    --color-primary-light: #4a7c5c;
    --color-accent: #8fbc8f;
    --color-text: #2c3e2c;
    --color-text-light: #5a6b5a;
    --color-bg: #fafbf9;
    --color-bg-alt: #f0f4ed;
    --color-bg-dark: #e8ede5;
    --color-white: #ffffff;
    --color-border: #d4ddd1;
    --font-heading: 'Georgia', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 1200px;
    --max-width-narrow: 720px;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.75rem; }
}

.nav-editorial {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-links a {
    color: var(--color-text);
    font-size: 0.95rem;
    position: relative;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
}

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

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

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

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

.hero-editorial {
    margin-top: 70px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

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

.hero-tag {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

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

.hero-lead {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    min-height: 300px;
    overflow: hidden;
}

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

@media (min-width: 992px) {
    .hero-editorial {
        flex-direction: row;
        align-items: stretch;
    }
    .hero-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 4rem 4rem 4rem 6rem;
        max-width: 55%;
    }
    .hero-image {
        flex: 1;
        min-height: auto;
    }
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

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

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

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

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

.btn-full {
    width: 100%;
    text-align: center;
}

.story-intro,
.story-section {
    padding: 5rem 1.5rem;
    background: var(--color-white);
}

.story-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.story-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.dropcap::first-letter {
    float: left;
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 0.8;
    padding-right: 0.75rem;
    color: var(--color-primary);
}

.story-narrow h2 {
    margin-bottom: 2rem;
}

.inline-figure {
    margin: 2.5rem -1rem;
}

.inline-figure img {
    width: 100%;
    border-radius: 4px;
}

.inline-figure figcaption {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-top: 0.75rem;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .inline-figure {
        margin: 3rem -3rem;
    }
    .inline-figure figcaption {
        padding: 0;
    }
}

.visual-break {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.visual-overlay blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    text-align: center;
    max-width: 600px;
    font-style: italic;
}

@media (min-width: 768px) {
    .visual-overlay blockquote {
        font-size: 2rem;
    }
}

.services-preview {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
}

.section-header-left {
    max-width: var(--max-width);
    margin: 0 auto 3rem;
}

.section-header-left h2 {
    margin-bottom: 0.5rem;
}

.section-header-left p {
    color: var(--color-text-light);
    font-size: 1.125rem;
}

.services-grid-editorial {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid-editorial {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .service-card-editorial {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 280px;
    }
}

.service-card-editorial {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

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

.service-card-editorial h3 {
    margin-bottom: 0.75rem;
}

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

.service-price {
    display: block;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.link-arrow::after {
    content: '→';
    transition: transform 0.2s ease;
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

.services-cta-inline {
    max-width: var(--max-width);
    margin: 3rem auto 0;
    text-align: center;
}

.testimonial-section {
    padding: 5rem 1.5rem;
    background: var(--color-primary);
}

.testimonial-wrapper {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

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

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .testimonial-text {
        font-size: 1.75rem;
    }
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    color: var(--color-white);
    font-weight: 600;
}

.author-role {
    color: var(--color-accent);
    font-size: 0.875rem;
}

.split-content {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
}

.split-image {
    height: 300px;
    overflow: hidden;
}

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

.split-text {
    padding: 3rem 1.5rem;
}

.section-tag {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.split-text h2 {
    margin-bottom: 1.5rem;
}

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

@media (min-width: 992px) {
    .split-content {
        flex-direction: row;
        min-height: 500px;
    }
    .split-image {
        flex: 1;
        height: auto;
    }
    .split-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 4rem;
    }
}

.numbers-section {
    padding: 4rem 1.5rem;
    background: var(--color-bg-dark);
}

.numbers-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.number-item {
    text-align: center;
    flex: 1 1 140px;
    max-width: 200px;
}

.number-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.cta-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 480px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.latest-insights {
    padding: 5rem 1.5rem;
    background: var(--color-white);
}

.insights-header {
    max-width: var(--max-width);
    margin: 0 auto 3rem;
    text-align: center;
}

.insights-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .insights-grid {
        flex-direction: row;
    }
}

.insight-card {
    flex: 1;
    background: var(--color-bg);
    border-radius: 8px;
    overflow: hidden;
}

.insight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.insight-content {
    padding: 1.5rem;
}

.insight-date {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.insight-content h3 {
    font-size: 1.25rem;
    margin: 0.5rem 0 0.75rem;
}

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

.footer-editorial {
    background: var(--color-text);
    color: var(--color-bg);
    padding: 4rem 1.5rem 2rem;
}

.footer-main {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-main {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand {
    max-width: 300px;
}

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

.footer-brand p {
    font-size: 0.875rem;
    color: var(--color-bg-dark);
    line-height: 1.6;
}

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

@media (min-width: 768px) {
    .footer-links {
        gap: 4rem;
    }
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-col a,
.footer-col p {
    display: block;
    color: var(--color-bg-dark);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: var(--color-white);
}

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

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-bg-dark);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 1001;
    display: none;
}

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

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

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

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

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

.btn-cookie-accept {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9375rem;
    transition: background 0.2s ease;
}

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

.btn-cookie-reject {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

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

.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(45, 90, 61, 0.3);
    z-index: 999;
    transition: all 0.2s ease;
}

.sticky-cta:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 61, 0.4);
}

.page-header-editorial {
    margin-top: 70px;
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.page-header-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.page-tag {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.page-header-content h1 {
    margin-bottom: 1rem;
}

.page-lead {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

.page-header-legal {
    margin-top: 70px;
    padding: 4rem 1.5rem;
    background: var(--color-bg-alt);
}

.page-header-legal h1 {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.legal-updated {
    max-width: var(--max-width-narrow);
    margin: 0.5rem auto 0;
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.legal-content {
    padding: 4rem 1.5rem;
    background: var(--color-white);
}

.legal-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

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

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.legal-section h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
}

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

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9375rem;
}

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

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

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

.about-intro {
    padding: 5rem 1.5rem;
    background: var(--color-white);
}

.values-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
}

.values-header {
    max-width: var(--max-width);
    margin: 0 auto 3rem;
    text-align: center;
}

.values-header p {
    color: var(--color-text-light);
    font-size: 1.125rem;
}

.values-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
}

.value-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

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

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

.team-section {
    padding: 5rem 1.5rem;
    background: var(--color-white);
}

.team-intro {
    max-width: var(--max-width);
    margin: 0 auto 3rem;
    text-align: center;
}

.team-intro p {
    color: var(--color-text-light);
    font-size: 1.125rem;
}

.team-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team-member {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 220px;
    max-width: 280px;
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

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

.team-member h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.member-role {
    display: block;
    color: var(--color-primary);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

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

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

.timeline-header {
    max-width: var(--max-width);
    margin: 0 auto 3rem;
    text-align: center;
}

.timeline {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

@media (min-width: 768px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .timeline-item {
        padding-left: 0;
        padding-right: 50%;
        text-align: right;
    }
    .timeline-item:nth-child(even) {
        padding-right: 0;
        padding-left: 50%;
        text-align: left;
    }
    .timeline-item .timeline-content {
        padding-right: 2rem;
    }
    .timeline-item:nth-child(even) .timeline-content {
        padding-right: 0;
        padding-left: 2rem;
    }
}

.timeline-year {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

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

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

.partners-section {
    padding: 4rem 1.5rem;
    background: var(--color-white);
}

.partners-header {
    max-width: var(--max-width);
    margin: 0 auto 2rem;
    text-align: center;
}

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

.partners-list {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.partner-item {
    background: var(--color-bg-alt);
    padding: 1rem 2rem;
    border-radius: 4px;
}

.partner-item span {
    font-weight: 500;
    color: var(--color-text-light);
}

.services-intro {
    padding: 4rem 1.5rem;
    background: var(--color-white);
}

.service-detail {
    padding: 5rem 1.5rem;
    background: var(--color-white);
}

.service-detail.alt {
    background: var(--color-bg-alt);
}

.service-detail-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 992px) {
    .service-detail-inner {
        flex-direction: row;
        align-items: center;
    }
    .service-detail-inner.reverse {
        flex-direction: row-reverse;
    }
    .service-detail-content {
        flex: 1;
    }
    .service-detail-image {
        flex: 1;
    }
}

.service-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.5;
    display: block;
    margin-bottom: 1rem;
}

.service-detail-content h2 {
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

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

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

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.service-pricing {
    background: var(--color-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    color: var(--color-text-light);
}

.price-value {
    font-weight: 600;
    color: var(--color-primary);
}

.service-detail-image img {
    border-radius: 8px;
    width: 100%;
}

.services-comparison {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
}

.comparison-header {
    max-width: var(--max-width);
    margin: 0 auto 3rem;
    text-align: center;
}

.comparison-table {
    max-width: var(--max-width);
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--color-border);
}

.comparison-row.header {
    background: var(--color-primary);
}

.comparison-row.header .comparison-cell {
    color: var(--color-white);
    font-weight: 600;
}

.comparison-cell {
    flex: 1;
    padding: 1rem;
    min-width: 150px;
    color: var(--color-text-light);
}

.comparison-row:not(.header):hover {
    background: var(--color-white);
}

.contact-main {
    padding: 5rem 1.5rem;
    background: var(--color-white);
}

.contact-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (min-width: 992px) {
    .contact-grid {
        flex-direction: row;
    }
    .contact-info {
        flex: 0 0 350px;
    }
    .contact-form-wrapper {
        flex: 1;
    }
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

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

.info-note {
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-form {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 8px;
}

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

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

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9375rem;
}

.map-section {
    background: var(--color-bg-alt);
}

.map-wrapper {
    position: relative;
    height: 300px;
}

.map-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay-info {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-overlay-info p {
    font-weight: 500;
    color: var(--color-text);
}

.faq-section {
    padding: 5rem 1.5rem;
    background: var(--color-white);
}

.faq-header {
    max-width: var(--max-width-narrow);
    margin: 0 auto 3rem;
    text-align: center;
}

.faq-list {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.faq-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

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

.thanks-page {
    margin-top: 70px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.thanks-content {
    text-align: center;
    max-width: 500px;
}

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

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

.thanks-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.thanks-details {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-details p {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 480px) {
    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.thanks-suggestion {
    padding: 4rem 1.5rem;
    background: var(--color-white);
}

.suggestion-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.suggestion-content h2 {
    margin-bottom: 2rem;
}

.suggestion-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 480px) {
    .suggestion-grid {
        flex-direction: row;
    }
}

.suggestion-card {
    flex: 1;
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.2s ease;
}

.suggestion-card:hover {
    transform: translateY(-4px);
}

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

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