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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

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

.nav-horizontal {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

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

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-split {
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-split-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-text-side {
    flex: 1;
}

.hero-text-side h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-image-side {
    flex: 1;
}

.hero-image-side img {
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    object-fit: cover;
}

.hero-trust-markers {
    display: flex;
    gap: 3rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.intro-offset {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
}

.intro-content-wrap {
    text-align: center;
}

.intro-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.intro-content-wrap h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-content-wrap p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.features-asymmetric {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
}

.feature-card.featured {
    flex: 1 1 100%;
    display: flex;
}

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

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

.feature-card.featured .feature-card-image {
    flex: 1;
}

.feature-card.featured .feature-card-content {
    flex: 1;
}

.feature-card-content {
    padding: 2rem;
}

.feature-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-pricing {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 300px;
    position: relative;
    transition: all 0.3s ease;
}

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

.service-card.highlighted {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.price-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

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

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.btn-service {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.875rem;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.process-visual {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.process-content-side {
    flex: 1;
}

.process-content-side h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    min-width: 60px;
}

.step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.process-image-side {
    flex: 1;
}

.process-image-side img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.testimonials-minimal {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.testimonials-minimal h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

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

.testimonial {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 300px;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.cta-split-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-visual-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.cta-content-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.cta-content-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-overlay p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.form-info-side {
    flex: 1;
    padding: 3rem;
    background: var(--primary-color);
    color: white;
}

.form-info-side h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-info-side p {
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    stroke: white;
}

.form-input-side {
    flex: 1;
    padding: 3rem;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-submit {
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.coverage-map {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.coverage-map h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.coverage-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.coverage-region {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 250px;
}

.coverage-region h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.coverage-region ul {
    list-style: none;
}

.coverage-region li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-cookie-accept {
    padding: 0.75rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    background: #059669;
}

.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-reject:hover {
    background: white;
    color: var(--text-dark);
}

.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: all 0.3s ease;
}

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

.page-hero-minimal {
    background: var(--bg-light);
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

.story-image-left {
    flex: 1;
}

.story-image-left img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.story-content-right {
    flex: 1;
}

.story-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.story-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-content-right p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.values-asymmetric {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.values-asymmetric h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

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

.value-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
}

.value-card.large {
    flex: 1 1 100%;
}

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

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

.team-section {
    padding: 5rem 2rem;
}

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

.team-stat {
    text-align: center;
    flex: 1 1 250px;
}

.stat-visual {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
}

.stat-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stat-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.certifications-content {
    flex: 1;
}

.certifications-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

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

.cert-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.125rem;
}

.cert-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.certifications-visual {
    flex: 1;
}

.certifications-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.timeline h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 80px;
    text-align: right;
}

.timeline-content {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    flex: 1;
}

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

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

.cta-about {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: white;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.service-detail-card {
    margin-bottom: 5rem;
}

.service-detail-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.service-detail-image {
    flex: 1;
    max-width: 600px;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
}

.service-detail-header h2 {
    font-size: 2rem;
}

.service-detail-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.price-period-small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.service-detail-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.service-detail-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-comparison {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.service-comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.comparison-table {
    width: 100%;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--primary-color);
    color: white;
}

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

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.service-addons {
    padding: 5rem 2rem;
}

.service-addons h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.addon-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 250px;
}

.addon-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.service-cta {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.service-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.contact-split {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

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

.contact-info-side h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.contact-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.contact-block p {
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-block a {
    color: var(--primary-color);
}

.highlight-text {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
}

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

.map-placeholder {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(37, 99, 235, 0.95);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
}

.contact-cta-section {
    background: var(--bg-light);
    padding: 4rem 2rem;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.emergency-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.faq-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.thanks-hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.checkmark {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.selected-service-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 500px;
    display: none;
}

.selected-service-box h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.thanks-next-steps {
    margin: 4rem 0;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.next-steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.next-step {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    flex: 1 1 250px;
    max-width: 300px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.next-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.next-step p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.thanks-emergency {
    background: var(--bg-light);
    padding: 3rem 2rem;
    text-align: center;
}

.emergency-box {
    max-width: 600px;
    margin: 0 auto;
}

.emergency-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.btn-emergency {
    display: inline-block;
    padding: 1rem 2rem;
    background: #dc2626;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-emergency:hover {
    background: #b91c1c;
    color: white;
}

.legal-page {
    padding: 3rem 2rem 5rem;
}

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

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

.legal-date {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

.legal-contact {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.legal-notice {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.cookie-table thead {
    background: var(--bg-light);
}

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .hero-split-content,
    .story-split,
    .process-visual,
    .certifications-split,
    .service-detail-layout,
    .contact-split {
        flex-direction: column;
    }

    .service-detail-layout.reverse {
        flex-direction: column;
    }

    .form-container-split {
        flex-direction: column;
    }

    .hero-text-side h1,
    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .intro-content-wrap h2,
    .section-header-centered h2,
    .cta-content-overlay h2 {
        font-size: 2rem;
    }

    .hero-trust-markers {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .floating-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        gap: 1rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-text-side h1 {
        font-size: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .feature-card,
    .testimonial,
    .addon-card,
    .value-card {
        flex: 1 1 100%;
    }

    .process-steps {
        gap: 2.5rem;
    }

    .timeline-container::before {
        left: 40px;
    }

    .timeline-year {
        min-width: 60px;
        font-size: 1.25rem;
    }

    .timeline-item {
        gap: 1rem;
    }

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

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

    .service-detail-header {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero-split-content,
    .intro-offset,
    .features-asymmetric,
    .services-pricing,
    .process-visual,
    .coverage-map,
    .story-split {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-text-side h1 {
        font-size: 1.75rem;
    }

    .intro-content-wrap h2 {
        font-size: 1.75rem;
    }

    .coverage-region {
        flex: 1 1 100%;
    }

    .checkmark {
        width: 80px;
        height: 80px;
    }
}