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

:root {
    --primary-color: #1e40af;
    --secondary-color: #0ea5e9;
    --accent-color: #10b981;
    --dark-bg: #1f2937;
    --light-bg: #f9fafb;
    --text-dark: #111827;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

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

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

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

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-text p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-primary:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

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

.trust-indicators {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.split-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 60px;
}

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

.content-block,
.image-block {
    flex: 1;
}

.content-block h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 700;
}

.content-block h3 {
    font-size: 28px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    margin-top: 16px;
}

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

.image-block img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-proposition {
    background: var(--light-bg);
}

.problem-amplification {
    padding: 100px 0;
    background: var(--white);
}

.problem-amplification h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.problem-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 32px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.problem-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.1);
    transform: translateY(-4px);
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.problem-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-pricing {
    padding: 100px 0;
    background: var(--light-bg);
}

.services-pricing h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 32px;
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    max-width: 420px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.service-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.service-header {
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.price-tag {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.price-tag span {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
}

.service-card > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
}

.btn-select {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-select:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
}

.testimonials-inline {
    padding: 100px 0;
    background: var(--dark-bg);
}

.testimonial-block {
    margin-bottom: 48px;
}

.testimonial-block:last-child {
    margin-bottom: 0;
}

.testimonial-block blockquote {
    font-size: 24px;
    line-height: 1.7;
    color: var(--white);
    font-style: italic;
    margin-bottom: 16px;
    font-weight: 300;
}

.testimonial-block cite {
    font-size: 16px;
    color: var(--secondary-color);
    font-style: normal;
    font-weight: 600;
}

.methodology {
    background: var(--white);
}

.approach-steps {
    margin-top: 32px;
}

.step {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    padding-left: 24px;
    border-left: 3px solid var(--primary-color);
}

.step strong {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step span {
    font-size: 16px;
    color: var(--text-light);
}

.why-different {
    padding: 100px 0;
    background: var(--light-bg);
}

.why-different h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.difference-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.diff-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    padding: 40px 32px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.diff-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.diff-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.form-section {
    padding: 100px 0;
    background: var(--white);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.contact-form {
    background: var(--light-bg);
    padding: 48px;
    border-radius: 12px;
}

.form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    flex: 1;
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.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(30, 64, 175, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.main-footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    background: var(--accent-color);
    color: var(--white);
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
    transition: var(--transition);
}

.sticky-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    color: var(--white);
    font-size: 15px;
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: var(--transition);
}

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

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

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-subtext {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    background: var(--white);
}

.values-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    padding: 40px 32px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.team-expertise {
    padding: 100px 0;
    background: var(--white);
}

.team-expertise h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.team-highlights {
    display: flex;
    justify-content: space-around;
    margin: 60px 0;
    flex-wrap: wrap;
    gap: 40px;
}

.team-stat {
    text-align: center;
}

.team-stat h3 {
    font-size: 48px;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 8px;
}

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

.expertise-areas {
    margin-top: 60px;
}

.expertise-areas h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.expertise-list li {
    flex: 1 1 calc(50% - 8px);
    min-width: 250px;
    padding: 16px 20px;
    background: var(--light-bg);
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-light);
}

.credentials {
    background: var(--light-bg);
}

.credential-list {
    margin-top: 24px;
    list-style: none;
}

.credential-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.credential-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
}

.client-focus {
    padding: 100px 0;
    background: var(--white);
}

.client-focus h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.client-focus > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
    line-height: 1.8;
}

.client-types {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.client-type {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background: var(--light-bg);
    border-radius: 12px;
}

.client-type h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.client-type p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.why-choose {
    padding: 100px 0;
    background: var(--light-bg);
}

.why-choose h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.reason-item {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    padding: 32px 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.reason-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.reason-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    padding: 100px 0;
    background: var(--primary-color);
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.service-detail {
    padding: 100px 0;
}

.service-detail.alternate {
    background: var(--light-bg);
}

.price-display {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.price-display span {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
}

.inclusion-list {
    list-style: none;
    margin: 24px 0;
}

.inclusion-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.inclusion-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
}

.additional-services {
    padding: 100px 0;
    background: var(--white);
}

.additional-services h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.services-grid-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.compact-service {
    flex: 1 1 calc(50% - 12px);
    min-width: 300px;
    padding: 32px;
    background: var(--light-bg);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.compact-service:hover {
    border-color: var(--primary-color);
}

.compact-service h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.compact-service p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.compact-price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-approach {
    padding: 100px 0;
    background: var(--light-bg);
}

.service-approach h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.service-approach > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.phases {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.phase {
    flex: 1;
    min-width: 280px;
    padding: 40px 32px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.phase h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.phase p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-layout {
    padding: 100px 0;
    background: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 60px;
}

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

.contact-info-side h2,
.contact-form-side h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.info-block a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.info-note {
    font-size: 14px;
    font-style: italic;
    margin-top: 8px;
}

.form-intro-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: auto;
}

.checkbox-label span {
    font-size: 15px;
    color: var(--text-light);
}

.location-map {
    padding: 100px 0;
    background: var(--light-bg);
}

.location-map h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 32px;
    color: var(--white);
}

.map-overlay p {
    font-size: 18px;
    margin: 0;
}

.map-note {
    font-size: 14px;
    margin-top: 8px;
    opacity: 0.9;
}

.faq-contact {
    padding: 100px 0;
    background: var(--white);
}

.faq-contact h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.legal-page {
    padding: 80px 0;
    background: var(--white);
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 48px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page ul li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-page a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

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

.cookie-table td {
    font-size: 15px;
    color: var(--text-light);
}

.policy-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.policy-footer p {
    font-size: 14px;
}

.policy-footer a {
    margin: 0 12px;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 40px 24px;
}

.thanks-container {
    max-width: 700px;
    background: var(--white);
    padding: 60px 48px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.thanks-message {
    margin-bottom: 48px;
}

.thanks-message p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.next-steps {
    margin-bottom: 48px;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--text-dark);
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 14px 28px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #1e3a8a;
}

.btn-secondary {
    padding: 14px 28px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

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

.contact-info-box {
    background: var(--light-bg);
    padding: 24px;
    border-radius: 8px;
}

.contact-info-box p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
}

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

.contact-info-box a {
    color: var(--primary-color);
    font-weight: 600;
}

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

    .hero-left {
        padding: 60px 40px;
    }

    .hero-right {
        min-height: 400px;
    }

    .split-content {
        flex-direction: column;
        padding: 80px 40px;
    }

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

    .nav-menu {
        gap: 24px;
    }

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

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 38px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .content-block h2,
    .page-hero h1,
    .services-pricing h2,
    .why-different h2 {
        font-size: 32px;
    }

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

    .contact-form {
        padding: 32px 24px;
    }

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

    .sticky-cta {
        bottom: 16px;
        right: 16px;
    }

    .sticky-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .nav-menu {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .content-block h2 {
        font-size: 28px;
    }

    .price-tag {
        font-size: 32px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .thanks-container {
        padding: 40px 24px;
    }

    .thanks-container h1 {
        font-size: 32px;
    }
}