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

:root {
    --color-primary: #2d5a3d;
    --color-primary-dark: #1e3d29;
    --color-primary-light: #4a7c5c;
    --color-secondary: #8fb996;
    --color-accent: #d4a574;
    --color-text: #2c3e2d;
    --color-text-light: #5a6b5c;
    --color-bg: #fafbfa;
    --color-bg-alt: #f0f4f1;
    --color-bg-dark: #e8ede9;
    --color-white: #ffffff;
    --color-border: #d1d9d3;
    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --shadow-sm: 0 1px 3px rgba(45, 90, 61, 0.08);
    --shadow-md: 0 4px 12px rgba(45, 90, 61, 0.12);
    --shadow-lg: 0 8px 24px rgba(45, 90, 61, 0.16);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.25s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    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 var(--transition);
}

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

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.nav-list a {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

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

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
}

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

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

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

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

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

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

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.hero-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 85vh;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.hero-content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 6rem;
    max-width: 700px;
}

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

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

.hero-desc {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1 1 45%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

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

.intro-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.intro-stats {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

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

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

.intro-text {
    flex: 2 1 400px;
}

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

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

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

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1 1 300px;
    max-width: 380px;
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card.featured {
    border: 2px solid var(--color-primary);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-sm);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

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

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

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

.service-link {
    font-weight: 600;
    font-size: 0.9375rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.why-section {
    display: flex;
    flex-wrap: wrap;
    padding: 5rem 1.5rem;
    background: var(--color-white);
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.why-content {
    flex: 1 1 500px;
    padding-left: 3rem;
}

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

.why-list {
    list-style: none;
}

.why-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

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

.why-list strong {
    display: block;
    margin-bottom: 0.25rem;
}

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

.why-image {
    flex: 1 1 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

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

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

.testimonials-header h2 {
    color: var(--color-white);
}

.testimonials-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.testimonial {
    flex: 1 1 400px;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: none;
}

.testimonial p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial cite {
    display: block;
    font-style: normal;
}

.testimonial cite strong {
    display: block;
    font-size: 1rem;
}

.testimonial cite span {
    font-size: 0.875rem;
    opacity: 0.8;
}

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

.process-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.step {
    flex: 1 1 220px;
    max-width: 280px;
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

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

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

.cta-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    text-align: center;
}

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

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.cta-section .btn-primary:hover {
    background: var(--color-bg);
    color: var(--color-primary-dark);
}

.cta-alt {
    background: var(--color-bg-dark);
}

.cta-alt h2 {
    color: var(--color-text);
}

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

.cta-alt .btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

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

.form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: flex-start;
}

.form-info {
    flex: 1 1 280px;
}

.form-info h2 {
    margin-bottom: 1rem;
}

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

.main-form {
    flex: 2 1 400px;
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.site-footer {
    background: var(--color-text);
    color: var(--color-white);
    padding-top: 4rem;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-links {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-text);
    color: var(--color-white);
    padding: 1.25rem 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1 1 400px;
    font-size: 0.9375rem;
}

.cookie-content a {
    color: var(--color-secondary);
}

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

.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 90;
    transition: all var(--transition);
}

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

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

.page-hero-alt {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.page-hero-contact {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary-light) 100%);
}

.page-hero-legal {
    background: var(--color-bg-dark);
    padding: 4rem 1.5rem 3rem;
}

.page-hero-legal h1,
.page-hero-legal p {
    color: var(--color-text);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

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

.about-intro-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-intro-image {
    flex: 1 1 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-intro-text {
    flex: 1 1 450px;
}

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

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

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.value-card {
    flex: 1 1 220px;
    max-width: 240px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

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

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

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

.team-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.team-header p {
    color: var(--color-text-light);
    margin-top: 1rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.team-member {
    flex: 1 1 280px;
    max-width: 300px;
    text-align: center;
}

.member-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
}

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

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

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.25rem;
    width: 14px;
    height: 14px;
    background: var(--color-white);
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    transform: translateX(-50%);
}

.timeline-year {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

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

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

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

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.service-detail {
    padding: 4rem 1.5rem;
}

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

.service-detail:nth-child(even) {
    background: var(--color-white);
}

.service-detail-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.service-detail-reverse .service-detail-wrapper {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1 1 450px;
}

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

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

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--color-text-light);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
    opacity: 0.6;
}

.service-features li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: var(--color-white);
    font-weight: 700;
}

.service-pricing {
    background: var(--color-bg-dark);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.price-label {
    font-weight: 500;
    margin-right: 0.5rem;
}

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

.price-note {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

.service-detail-image {
    flex: 1 1 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.pricing-summary {
    padding: 4rem 1.5rem;
    background: var(--color-primary);
}

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

.pricing-summary h2 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.pricing-summary > .pricing-summary-content > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.pricing-table {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-header {
    background: var(--color-bg-alt);
    font-weight: 600;
}

.pricing-row span:last-child {
    font-weight: 600;
    color: var(--color-primary);
}

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

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-section {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.contact-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

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

.contact-note {
    font-size: 0.8125rem;
    margin-top: 0.5rem;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.375rem 0;
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.contact-details {
    flex: 1 1 400px;
}

.contact-details h2 {
    margin-bottom: 1rem;
}

.contact-details > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.transport-info {
    margin-bottom: 1.5rem;
}

.transport-info h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.transport-info ul {
    list-style: none;
    padding-left: 0;
}

.transport-info li {
    padding: 0.375rem 0 0.375rem 1.25rem;
    position: relative;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.transport-info li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

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

.map-placeholder {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 350px;
}

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

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

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

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

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-wrapper h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-text-light);
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    background: var(--color-bg-alt);
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: var(--color-white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-white);
}

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

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

.thanks-content > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: left;
    margin-bottom: 2rem;
}

.thanks-details h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.thanks-details ul {
    list-style: none;
}

.thanks-details li {
    padding: 0.375rem 0 0.375rem 1.5rem;
    position: relative;
    color: var(--color-text-light);
}

.thanks-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

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

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

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-article h2 {
    font-size: 1.375rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-bg-alt);
}

.legal-article h2:first-child {
    margin-top: 0;
}

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

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

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

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

.legal-date {
    margin-top: 3rem;
    font-style: italic;
}

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

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

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

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

@media (max-width: 900px) {
    .hero-content {
        padding: 3rem 1.5rem;
        flex: 1 1 100%;
    }

    .hero-visual {
        flex: 1 1 100%;
        min-height: 300px;
    }

    .why-content {
        padding-left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        display: none;
    }

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

    .nav-list a {
        display: block;
        padding: 0.75rem;
    }
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .sticky-cta {
        bottom: 80px;
        right: 10px;
        left: 10px;
        text-align: center;
    }

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

    .pricing-row {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
}
