:root {
    --color-primary: #1a365d;
    --color-primary-dark: #0f2744;
    --color-primary-light: #2c5282;
    --color-accent: #2b6cb0;
    --color-accent-hover: #2563eb;
    --color-text: #1a202c;
    --color-text-light: #4a5568;
    --color-text-muted: #718096;
    --color-bg: #ffffff;
    --color-bg-light: #f7fafc;
    --color-bg-dark: #1a202c;
    --color-border: #e2e8f0;
    --color-success: #38a169;
    --color-warning: #d69e2e;
    --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: 'Georgia', serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

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

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

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

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--color-bg-light);
    border-color: var(--color-text-muted);
}

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

.btn-outline:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-dark);
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
    font-size: 0.875rem;
    margin: 0;
}

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

.header {
    position: sticky;
    top: 0;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
}

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

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

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

.nav-main {
    display: none;
}

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

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-bg);
    padding: 2rem 1.5rem;
    z-index: 99;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav .nav-list {
    flex-direction: column;
    gap: 0;
}

.mobile-nav .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
    border-bottom: 1px solid var(--color-border);
}

.split-section {
    padding: 4rem 0;
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    min-height: 300px;
}

.hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--color-bg-light);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin: 1.5rem 0;
    max-width: 540px;
}

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

.section-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

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

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

.section-intro.light {
    color: #fff;
}

.section-intro.light h2 {
    color: #fff;
}

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

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

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

.challenges-section {
    padding: 4rem 0;
}

.challenges-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.challenge-icon {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

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

.challenge-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

.check-list {
    list-style: none;
    margin: 1.5rem 0;
}

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 600;
}

.services-preview {
    padding: 4rem 0;
}

.section-header-split {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
}

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

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

.service-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

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

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

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

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

.service-price .price-note {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

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

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

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

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.5rem;
}

.process-steps {
    margin-top: 2rem;
}

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

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50%;
}

.step-content h4 {
    margin-bottom: 0.25rem;
}

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

.testimonials-section {
    padding: 4rem 0;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.testimonial-content p {
    color: #fff;
    font-size: 1.0625rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-name {
    display: block;
    color: #fff;
    font-weight: 600;
}

.author-role {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
}

.cta-section {
    padding: 0;
}

.cta-section .split-content {
    padding: 0;
}

.cta-section .split-image {
    min-height: 300px;
}

.cta-content {
    padding: 3rem 1.5rem;
    background-color: var(--color-bg-light);
}

.consultation-form {
    margin-top: 2rem;
}

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

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

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

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input {
    width: auto;
    margin-top: 0.25rem;
}

.form-checkbox label {
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 0;
}

.faq-section {
    padding: 4rem 0;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: var(--color-bg);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

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

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

.footer {
    background-color: var(--color-bg-dark);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

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

.footer h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

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

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

.footer ul a:hover {
    color: #fff;
}

.footer address {
    font-style: normal;
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    display: block;
    margin-top: 1rem;
}

.footer-contact a:hover {
    color: #fff;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: var(--color-primary);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-weight: 500;
    z-index: 90;
    transition: all var(--transition);
}

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

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

.page-hero-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

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

.page-hero-lead {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 640px;
    margin: 0 auto;
}

.values-section {
    padding: 4rem 0;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card {
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    color: var(--color-primary);
}

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

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

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

.team-section {
    padding: 4rem 0;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-card {
    background-color: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.team-info {
    padding: 1.5rem;
}

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

.team-role {
    display: block;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 1rem;
}

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

.approach-section {
    padding: 4rem 0;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-text {
    margin-bottom: 2.5rem;
}

.approach-comparison {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-column {
    background-color: var(--color-bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.comparison-column.highlight {
    background-color: var(--color-primary);
    color: #fff;
}

.comparison-column.highlight h4 {
    color: #fff;
}

.comparison-column h4 {
    margin-bottom: 1rem;
}

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

.comparison-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

.comparison-list.negative li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--color-warning);
    font-weight: 600;
}

.comparison-list.positive li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #90EE90;
    font-weight: 600;
}

.cta-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.cta-banner-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-banner h2 {
    color: #fff;
    margin-bottom: 1rem;
}

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

.services-overview {
    padding: 3rem 0 2rem;
}

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

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

.service-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-bg-light);
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.bg-light .service-category {
    background-color: var(--color-bg);
}

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

.service-details h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.service-pricing-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--color-bg);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bg-light .service-pricing-box {
    background-color: #fff;
}

.pricing-info {
    flex: 1;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.price-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-detail {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.services-comparison {
    padding: 4rem 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

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

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

.comparison-table th {
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 600;
}

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

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

.table-link {
    font-weight: 500;
}

.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info {
    flex: 1;
}

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

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

.contact-block address {
    font-style: normal;
    color: var(--color-text-light);
    line-height: 1.7;
}

.contact-link {
    display: block;
    font-weight: 500;
    margin-top: 0.25rem;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-light);
}

.hours-list li span:first-child {
    font-weight: 500;
    color: var(--color-text);
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 300px;
}

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

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

.map-overlay p {
    font-weight: 500;
    line-height: 1.5;
}

.faq-contact {
    padding: 4rem 0;
}

.thanks-section {
    padding: 6rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--color-success);
}

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

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

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

.thanks-text {
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
}

.thanks-next {
    background-color: var(--color-bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: left;
    margin-bottom: 2.5rem;
}

.thanks-next h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.thanks-steps li:last-child {
    margin-bottom: 0;
}

.thanks-steps .step-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50%;
}

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

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

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

.legal-hero {
    padding: 3rem 0;
    background-color: var(--color-bg-light);
}

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

.legal-updated {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

.legal-content {
    padding: 3rem 0 4rem;
}

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

.legal-text h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

.legal-text address {
    font-style: normal;
    margin: 1rem 0;
    padding: 1rem;
    background-color: var(--color-bg-light);
    border-radius: var(--radius-md);
}

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

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

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

@media (min-width: 768px) {
    .nav-main {
        display: block;
    }

    .nav-toggle {
        display: none;
    }

    .split-content {
        flex-direction: row;
        align-items: center;
    }

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

    .split-text,
    .split-image {
        flex: 1;
    }

    .challenges-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .challenge-card {
        flex: 1;
        min-width: 280px;
    }

    .section-header-split {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .services-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 280px;
    }

    .testimonials-grid {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 1;
        min-width: 280px;
    }

    .footer-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 2;
        min-width: 280px;
    }

    .footer-nav,
    .footer-legal,
    .footer-contact {
        flex: 1;
        min-width: 160px;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1;
        min-width: 220px;
    }

    .team-grid {
        flex-direction: row;
    }

    .team-card {
        flex: 1;
    }

    .approach-comparison {
        flex-direction: row;
    }

    .comparison-column {
        flex: 1;
    }

    .service-pricing-box {
        flex-direction: row;
        align-items: center;
    }

    .contact-grid {
        flex-direction: row;
    }

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

    .cta-section .split-content {
        flex-direction: row;
    }

    .cta-section .split-image,
    .cta-section .cta-content {
        flex: 1;
    }

    .cta-content {
        padding: 4rem 3rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .split-section {
        padding: 5rem 0;
    }

    .split-image img {
        min-height: 400px;
    }

    .stats-section {
        padding: 5rem 0;
    }

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

    .testimonials-section {
        padding: 5rem 0;
    }

    .cta-content {
        padding: 5rem 4rem;
    }

    .faq-section {
        padding: 5rem 0;
    }

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

    .thanks-section {
        padding: 8rem 0;
    }
}
