:root {
    --color-primary: #2C5F8D;
    --color-secondary: #E67E22;
    --color-accent: #16A085;
    --color-dark: #1A1A2E;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #FFFFFF;
    --color-bg-light: #F8F9FA;
    --color-bg-dark: #2C3E50;
    --color-border: #E0E0E0;
    --color-success: #27AE60;
    --color-error: #E74C3C;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-heading: 'Georgia', serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.btn-primary, .btn-secondary, .btn-submit, .btn-sticky, .btn-primary-inverse {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #234a6d;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-primary-inverse {
    background-color: white;
    color: var(--color-primary);
    border: 2px solid white;
}

.btn-primary-inverse:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-submit {
    background-color: var(--color-accent);
    color: white;
    width: 100%;
}

.btn-submit:hover {
    background-color: #138F72;
}

.btn-sticky {
    background-color: var(--color-secondary);
    color: white;
    padding: 12px 24px;
}

.btn-sticky:hover {
    background-color: #D35400;
    color: white;
}

.btn-service-select {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-service-select:hover {
    background-color: #234a6d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-menu a {
    font-weight: 500;
    color: var(--color-text);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

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

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

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    transition: var(--transition);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    display: none;
}

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

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

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

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

.cookie-buttons {
    display: flex;
    gap: 12px;
}

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

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

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

.btn-cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left, .hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    padding: 80px 60px;
    background-color: var(--color-bg-light);
}

.hero-content {
    max-width: 540px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.hero-right {
    background-color: var(--color-bg-dark);
    overflow: hidden;
}

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

.insight-bar {
    background-color: var(--color-primary);
    color: white;
    padding: 60px 20px;
}

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

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-secondary);
}

.stat-label {
    font-size: 1rem;
    line-height: 1.5;
}

.problem-reveal {
    padding: 100px 20px;
}

.split-reverse {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.content-block h2 {
    margin-bottom: 24px;
}

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

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

.method-section {
    padding: 100px 20px;
    background-color: var(--color-bg-light);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.method-cards {
    display: flex;
    gap: 40px;
}

.method-card {
    flex: 1;
    background-color: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.method-icon {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.method-card h3 {
    margin-bottom: 16px;
    font-size: 1.375rem;
}

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

.trust-proof {
    padding: 100px 20px;
    background-color: var(--color-bg-dark);
    color: white;
}

.testimonial-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.testimonial-main {
    flex: 2;
}

.testimonial-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial-main blockquote {
    font-size: 1.5rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-main cite {
    font-size: 1rem;
    font-style: normal;
    color: var(--color-secondary);
}

.mini-testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 8px;
}

.mini-testimonial p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.mini-testimonial cite {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.services-showcase {
    padding: 100px 20px;
}

.section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
}

.section-header-split h2 {
    font-size: 2.5rem;
}

.header-description {
    max-width: 400px;
    font-size: 1.125rem;
    color: var(--color-text-light);
}

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

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background-color: white;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--color-secondary);
    background-color: #FFF8F0;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.service-header h3 {
    flex: 1;
    margin-bottom: 0;
    font-size: 1.375rem;
}

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

.service-card p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    color: var(--color-text-light);
}

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

.why-now {
    padding: 80px 20px;
    background-color: var(--color-bg-light);
}

.urgency-box {
    background-color: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.urgency-box h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.urgency-box p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.form-section {
    padding: 100px 20px;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
}

.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bg-dark) 100%);
    color: white;
}

.cta-box {
    text-align: center;
}

.cta-box h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.footer {
    background-color: var(--color-dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.125rem;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    padding: 16px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sticky-content span {
    color: white;
    font-weight: 600;
}

.page-hero {
    padding: 100px 20px 80px;
    background-color: var(--color-bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 24px;
}

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

.story-section {
    padding: 100px 20px;
}

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

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

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

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.value-card {
    flex: 1;
    background-color: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    color: var(--color-primary);
    margin-bottom: 16px;
}

.team-section {
    padding: 100px 20px;
}

.team-grid {
    display: flex;
    gap: 40px;
}

.team-member {
    flex: 1;
    text-align: center;
}

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

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

.team-member h3 {
    margin-bottom: 8px;
}

.role {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.approach-section {
    padding: 100px 20px;
    background-color: var(--color-bg-light);
}

.approach-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.approach-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.3;
    flex-shrink: 0;
    width: 100px;
}

.approach-step h3 {
    margin-bottom: 12px;
}

.results-highlight {
    padding: 100px 20px;
}

.results-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    padding: 80px 60px;
    border-radius: 12px;
    text-align: center;
}

.results-box h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.results-stats {
    display: flex;
    justify-content: space-around;
    gap: 60px;
}

.result-stat {
    flex: 1;
}

.stat-big {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.result-stat p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.cta-about {
    padding: 100px 20px;
    background-color: var(--color-bg-light);
}

.cta-box-simple {
    background-color: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.cta-box-simple h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-box-simple p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.services-detailed {
    padding: 80px 20px;
}

.service-detail-card {
    background-color: white;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 48px;
    margin-bottom: 32px;
    position: relative;
}

.service-detail-card.featured-card {
    border-color: var(--color-secondary);
    background-color: #FFF8F0;
}

.service-detail-card.premium-card {
    border-color: var(--color-accent);
    background: linear-gradient(135deg, #F0F9FF 0%, #F8F9FA 100%);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 32px;
}

.service-intro {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-top: 12px;
}

.price-badge {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    background-color: rgba(44, 95, 141, 0.1);
    padding: 16px 24px;
    border-radius: 8px;
    white-space: nowrap;
}

.service-detail-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.detail-section h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.detail-section ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-section ul li {
    padding-left: 28px;
    position: relative;
    color: var(--color-text-light);
}

.detail-section ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

.comparison-section {
    padding: 80px 20px;
    background-color: var(--color-bg-light);
}

.comparison-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
}

.comparison-table {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    text-align: left;
}

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

.comparison-table th {
    font-weight: 600;
}

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

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

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

.faq-services {
    padding: 80px 20px;
}

.faq-services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
}

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

.faq-item {
    background-color: var(--color-bg-light);
    padding: 32px;
    border-radius: 8px;
}

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

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

.cta-services {
    padding: 80px 20px;
    background-color: var(--color-bg-light);
}

.contact-content {
    padding: 80px 20px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info, .contact-map {
    flex: 1;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--color-primary);
}

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

.contact-note {
    background-color: var(--color-bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.contact-reasons {
    padding: 80px 20px;
    background-color: var(--color-bg-light);
}

.contact-reasons h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
}

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

.reason-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.reason-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.cta-contact {
    padding: 80px 20px;
}

.thanks-hero {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    text-align: center;
}

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

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

.thanks-hero h1 {
    color: white;
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.thanks-lead {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.thanks-info {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 20px 32px;
    border-radius: 8px;
    margin-bottom: 48px;
}

.thanks-next h2 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.thanks-steps {
    text-align: left;
    display: inline-block;
    margin-bottom: 48px;
}

.thanks-steps li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 16px;
    font-size: 1.125rem;
}

.thanks-steps li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
}

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

.thanks-extra {
    padding: 80px 20px;
}

.extra-box h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
}

.extra-links {
    display: flex;
    gap: 32px;
}

.extra-link {
    flex: 1;
    background-color: var(--color-bg-light);
    padding: 40px 32px;
    border-radius: 12px;
    transition: var(--transition);
}

.extra-link:hover {
    background-color: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.extra-link h3 {
    color: var(--color-primary);
    margin-bottom: 12px;
}

.extra-link p {
    color: var(--color-text-light);
}

.legal-page {
    padding: 80px 20px;
}

.legal-intro {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 20px;
}

.legal-content ul li {
    margin-bottom: 8px;
    color: var(--color-text-light);
}

.legal-content a {
    text-decoration: underline;
}

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

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

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

    .stat-grid {
        flex-direction: column;
        gap: 32px;
    }

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

    .method-cards {
        flex-direction: column;
    }

    .testimonial-layout {
        flex-direction: column;
    }

    .section-header-split {
        flex-direction: column;
        gap: 24px;
    }

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

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

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

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

    .results-stats {
        flex-direction: column;
        gap: 40px;
    }

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

    .extra-links {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

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

    .nav-menu a {
        padding: 16px 20px;
        border-bottom: 1px solid var(--color-border);
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

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

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

    .page-hero h1 {
        font-size: 2.25rem;
    }

    .approach-step {
        flex-direction: column;
        gap: 16px;
    }

    .step-number {
        width: auto;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 20px;
    }

    .service-detail-card {
        padding: 32px 24px;
    }

    .urgency-box,
    .cta-box-simple,
    .results-box {
        padding: 40px 24px;
    }

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

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

    .reason-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 32px 24px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-submit {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .results-box h2,
    .section-header-center h2 {
        font-size: 1.75rem;
    }

    .stat-big {
        font-size: 3rem;
    }
}