:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --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);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

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

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

.nav-link {
    display: block;
    padding: 1rem 20px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

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

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

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-lead {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.page-hero {
    background-color: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

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

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

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

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

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

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

.section-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.intro-block {
    max-width: 800px;
    margin: 0 auto;
}

.intro-block h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-block p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

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

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

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

.feature-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 1.5rem;
}

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

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

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

.content-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.column-text h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.column-text p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.values-list li {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.stats-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.stats-section .section-title {
    color: var(--bg-white);
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

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

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

.service-preview-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-preview-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-preview-card p {
    color: var(--text-medium);
}

.cta-centered {
    text-align: center;
    margin-top: 2.5rem;
}

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

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

.testimonial-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

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

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

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

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

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.insights-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

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

.insight-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

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

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

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

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

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

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.7;
}

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

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

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--bg-white);
}

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
}

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

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--bg-white);
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-medium);
    line-height: 1;
}

.modal-body {
    padding: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.cookie-option p {
    margin-top: 0.5rem;
    color: var(--text-medium);
    font-size: 0.875rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

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

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

.services-intro h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card-detailed {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.service-header {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

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

.service-body {
    padding: 1.5rem;
}

.service-body p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

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

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

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

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

.benefit-card {
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    background-color: var(--bg-white);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-medium);
}

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

.process-step-horizontal {
    text-align: center;
}

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

.process-step-horizontal h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.process-step-horizontal p {
    color: var(--text-medium);
}

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

.comparison-table {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-row {
    display: flex;
    flex-direction: column;
}

.comparison-cell {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-header {
    background-color: var(--bg-light);
    font-weight: 700;
}

.comparison-cell.highlight {
    background-color: rgba(37, 99, 235, 0.05);
}

.comparison-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-medium);
    font-style: italic;
}

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

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

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

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.contact-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.contact-description-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-description-section p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.location-description h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.location-description p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.directions-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.directions-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

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

.location-note {
    background-color: var(--bg-white);
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
    font-weight: 600;
}

.company-info-section {
    padding: 4rem 0;
}

.company-details {
    max-width: 600px;
    margin: 0 auto;
}

.company-details p {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
}

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

.thank-you-section {
    padding: 5rem 0;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.thank-you-lead {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.next-steps {
    padding: 4rem 0;
}

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

.step-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-medium);
}

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

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

.resource-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.resource-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-page {
    padding: 3rem 0;
}

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

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

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-section h4 {
    font-size: 1.125rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-section p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.legal-list {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-list li {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-table {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.cookie-table h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

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

.value-card {
    text-align: center;
}

.value-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-medium);
}

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

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

.team-member {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.member-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

.timeline {
    position: relative;
}

.timeline-item {
    margin-bottom: 2.5rem;
    padding-left: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 12px;
    width: 2px;
    height: calc(100% + 1.5rem);
    background-color: var(--border-color);
}

.timeline-year {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

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

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

.approach-content > p {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.approach-item {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

.approach-item p {
    color: var(--text-medium);
}

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

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

.impact-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

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

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        background-color: transparent;
    }

    .nav-link {
        border-bottom: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-lead {
        font-size: 1.25rem;
    }

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

    .feature-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .content-columns {
        flex-direction: row;
    }

    .column-text {
        flex: 1;
    }

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

    .stat-card {
        flex: 0 0 calc(50% - 1rem);
    }

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

    .service-preview-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

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

    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }

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

    .insight-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        flex: 1;
    }

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

    .benefit-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .process-steps-horizontal {
        flex-direction: row;
    }

    .process-step-horizontal {
        flex: 1;
    }

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

    .comparison-cell {
        flex: 1;
        border-right: 1px solid var(--border-color);
    }

    .comparison-cell:last-child {
        border-right: none;
    }

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

    .contact-info-section,
    .contact-description-section {
        flex: 1;
    }

    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

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

    .step-card {
        flex: 1;
    }

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

    .resource-card {
        flex: 1;
    }

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

    .value-card {
        flex: 0 0 calc(50% - 1rem);
    }

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

    .team-member {
        flex: 0 0 calc(50% - 1rem);
    }

    .timeline-item {
        padding-left: 3rem;
    }

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

    .approach-item {
        flex: 0 0 calc(50% - 0.75rem);
    }

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

    .impact-card {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .feature-card {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .stat-card {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .testimonial-card {
        flex: 0 0 calc(33.333% - 1.34rem);
    }

    .insight-card {
        flex: 0 0 calc(33.333% - 1.34rem);
    }

    .value-card {
        flex: 0 0 calc(25% - 1.5rem);
    }
}