:root {
    --color-primary: #1a3a5c;
    --color-primary-dark: #0f2740;
    --color-secondary: #c9a962;
    --color-secondary-light: #e0c989;
    --color-accent: #8b4d6b;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f9fc;
    --color-bg-dark: #1a202c;
    --font-heading: 'Georgia', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

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 var(--transition);
}

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

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    font-weight: 400;
}

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

.nav-menu a {
    font-size: 0.95rem;
    color: var(--color-text);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-primary-dark);
    transition: var(--transition);
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-align: center;
}

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

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

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

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

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

.btn-light:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
}

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

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

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

.link-arrow::after {
    content: '→';
    transition: transform var(--transition);
}

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

main {
    padding-top: 70px;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.split-hero {
    display: flex;
    min-height: calc(100vh - 70px);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
}

.hero-tag {
    font-size: 0.9rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

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

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

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.intro-split {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.intro-visual {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-md);
}

.stat-card.accent {
    background: var(--color-primary);
    color: white;
}

.stat-card.accent .stat-label {
    color: rgba(255,255,255,0.8);
}

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

.stat-card.accent .stat-number {
    color: white;
}

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

.intro-text {
    flex: 1;
}

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

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

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

.section-header.light {
    color: white;
}

.section-header.light h2 {
    color: white;
}

.section-header.light p {
    color: rgba(255,255,255,0.8);
}

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

.section-tag {
    display: block;
    font-size: 0.85rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

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

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

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

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

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

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

.price {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary);
}

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

.split-section {
    display: flex;
    min-height: 500px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
}

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

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

.split-content .btn,
.split-content .link-arrow {
    margin-top: 1rem;
    align-self: flex-start;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.split-image.dark-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26,58,92,0.7);
    z-index: 1;
}

.overlay-content {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    z-index: 2;
    color: white;
}

.overlay-content span:first-child {
    display: block;
    font-family: var(--font-heading);
    font-size: 4rem;
}

.overlay-content span:last-child {
    font-size: 1rem;
    opacity: 0.9;
}

.testimonials {
    padding: 6rem 5%;
    background: var(--color-bg-alt);
}

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

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

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.testimonial blockquote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.process {
    padding: 6rem 5%;
    background: var(--color-primary-dark);
}

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

.step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    color: white;
}

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

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

.step p {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

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

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

.cta-content p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
}

.quick-form-section {
    padding: 6rem 5%;
    background: var(--color-bg-alt);
}

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

.quick-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition);
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.footer {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 5% 2rem;
}

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

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

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

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

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

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
}

.footer-minimal {
    padding: 2rem 5%;
}

.footer-minimal .footer-bottom {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    color: var(--color-text-light);
    min-width: 250px;
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--color-secondary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-weight: 500;
    z-index: 100;
    transition: all var(--transition);
}

.sticky-cta:hover {
    background: var(--color-secondary-light);
    color: white;
    transform: translateY(-3px);
}

.page-hero {
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
    text-align: center;
}

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

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

.page-hero p {
    font-size: 1.15rem;
    color: var(--color-text-light);
}

.values-section {
    padding: 6rem 5%;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    border-left: 3px solid var(--color-secondary);
}

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

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

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

.team-section {
    padding: 6rem 5%;
    background: var(--color-bg-alt);
}

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

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.member-image {
    height: 280px;
    overflow: hidden;
}

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

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

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

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

.stats-split .dark-bg {
    background: var(--color-primary-dark);
    padding: 4rem;
}

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

.stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: white;
}

.stat-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.certifications {
    padding: 4rem 5%;
}

.cert-list {
    max-width: 900px;
    margin: 0 auto;
}

.cert-item {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    align-items: center;
}

.cert-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-primary);
    min-width: 150px;
}

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

.about-cta {
    margin-top: 2rem;
}

.services-intro {
    padding: 4rem 5%;
    text-align: center;
}

.services-intro .lead {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.service-detail {
    padding: 5rem 5%;
}

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

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

.service-split.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.service-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

.service-info {
    flex: 1;
}

.service-category {
    font-size: 0.85rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-info h2 {
    margin: 0.5rem 0 1rem;
}

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

.service-includes h4 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-includes ul {
    list-style: none;
    margin-bottom: 2rem;
}

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

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

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

.price-main {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

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

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

.price-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin: 0;
}

.pricing-comparison {
    padding: 5rem 5%;
    background: var(--color-primary-dark);
}

.pricing-comparison .section-header {
    color: white;
}

.pricing-comparison .section-header h2 {
    color: white;
}

.pricing-comparison .section-header p {
    color: rgba(255,255,255,0.7);
}

.pricing-table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.pricing-table th,
.pricing-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
}

.pricing-table th {
    background: var(--color-bg-alt);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

.pricing-table td {
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.services-form-section {
    padding: 5rem 5%;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

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

.service-form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

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

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

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

.contact-main {
    padding: 4rem 5%;
}

.contact-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-side {
    flex: 0 0 40%;
}

.contact-form-side {
    flex: 1;
}

.contact-block {
    margin-bottom: 2.5rem;
}

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

.contact-block h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-secondary);
}

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

.contact-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0;
}

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

.response-time {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.response-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.response-icon {
    background: var(--color-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.contact-form-container h2 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.map-section {
    height: 400px;
    position: relative;
}

.map-container {
    height: 100%;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
}

.map-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.map-card h3 {
    margin-bottom: 0.5rem;
}

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

.contact-faq {
    padding: 5rem 5%;
    background: var(--color-bg-alt);
}

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

.faq-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
}

.faq-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.faq-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0;
}

.thanks-section {
    min-height: calc(100vh - 170px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
}

.thanks-container {
    max-width: 600px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: #48bb78;
}

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

.thanks-container h1 {
    margin-bottom: 1rem;
}

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

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

.thanks-details p {
    margin: 0.5rem 0;
}

.thanks-info {
    text-align: left;
    margin-bottom: 2rem;
}

.thanks-info h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

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

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

.thanks-step strong {
    display: block;
    margin-bottom: 0.25rem;
}

.thanks-step p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

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

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

.legal-hero {
    padding: 8rem 5% 3rem;
    background: var(--color-bg-alt);
    text-align: center;
}

.legal-hero h1 {
    margin-bottom: 0.5rem;
}

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

.legal-content {
    padding: 4rem 5%;
}

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

.legal-article h2 {
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

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

.legal-article h3 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.75rem;
}

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

.legal-article ul {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

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

.legal-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.legal-links h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

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

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

.cookie-table th,
.cookie-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

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

.gdpr-rights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gdpr-right {
    flex: 1;
    min-width: 280px;
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.gdpr-right h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.gdpr-right p {
    font-size: 0.9rem;
    margin: 0;
}

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

    .hero-image {
        height: 50vh;
    }

    .intro-split {
        flex-direction: column;
    }

    .intro-visual {
        flex: none;
        flex-direction: row;
    }

    .split-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .split-image {
        height: 350px;
    }

    .service-split,
    .service-split.reverse {
        flex-direction: column;
    }

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

    .contact-info-side {
        flex: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 5%;
        box-shadow: var(--shadow-md);
        gap: 0;
    }

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

    .nav-menu li {
        padding: 0.75rem 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-toggle {
        display: flex;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .intro-visual {
        flex-direction: column;
    }

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

    .service-card {
        max-width: none;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: none;
    }

    .testimonials-container {
        flex-direction: column;
    }

    .testimonial {
        max-width: none;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        text-align: center;
    }

    .values-grid {
        flex-direction: column;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        max-width: 350px;
    }

    .stats-grid-inline {
        justify-content: center;
    }

    .cert-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .pricing-table {
        font-size: 0.85rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 1rem;
    }

    .faq-grid {
        flex-direction: column;
    }

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

    .gdpr-rights {
        flex-direction: column;
    }

    .gdpr-right {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 3rem 5%;
    }

    .page-hero {
        padding: 6rem 5% 3rem;
    }

    .quick-form,
    .service-form,
    .contact-form-container {
        padding: 1.5rem;
    }

    .service-image img {
        height: 250px;
    }

    .map-overlay {
        left: 5%;
        right: 5%;
    }

    .map-card {
        padding: 1.5rem;
    }
}
