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

:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --transition: all 0.3s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    padding: 20px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

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

.btn-accept:hover {
    background: #2980b9;
}

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 15px;
}

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

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

.hero-left {
    flex: 1;
    padding: 80px 60px 80px 80px;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-weight: 800;
}

.hero-left p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-right {
    flex: 1;
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    min-height: 85vh;
}

.hero-visual svg {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.value-split {
    display: flex;
    align-items: center;
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-weight: 700;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.split-visual {
    flex: 1;
    background: var(--bg-light);
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 400px;
}

.stat-card {
    background: white;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

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

.insight-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.insight-item {
    flex: 1;
}

.insight-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

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

.services-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 25px 0;
}

.select-service {
    width: 100%;
    padding: 14px 24px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.select-service:hover {
    background: #1a252f;
}

.select-service.selected {
    background: var(--success-color);
}

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

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 700;
}

.form-left p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-item svg {
    flex-shrink: 0;
}

.trust-item span {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-right {
    flex: 1;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.service-display {
    padding: 12px 16px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    color: var(--text-light);
}

.service-display.selected {
    color: var(--success-color);
    font-weight: 600;
    border-color: var(--success-color);
}

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

.btn-submit:hover {
    background: #2980b9;
}

.btn-submit:disabled {
    background: var(--text-light);
    cursor: not-allowed;
}

.testimonial-split {
    display: flex;
    align-items: center;
    background: var(--secondary-color);
    color: white;
}

.testimonial-content {
    flex: 1;
    padding: 80px 60px;
}

.testimonial-content blockquote {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-content cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

.testimonial-visual {
    flex: 1;
    padding: 80px 60px;
    background: rgba(0, 0, 0, 0.2);
}

.impact-metrics {
    display: flex;
    gap: 40px;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.metric-label {
    font-size: 15px;
    opacity: 0.9;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.page-hero-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: var(--bg-light);
}

.page-hero-split .hero-left {
    flex: 1;
    padding: 60px 80px;
}

.page-hero-split .hero-left h1 {
    font-size: 46px;
}

.page-hero-split .hero-right {
    flex: 1;
    background: white;
    min-height: auto;
    padding: 60px;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

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

.content-split {
    display: flex;
    padding: 80px 0;
}

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

.split-left {
    flex: 1;
    padding: 40px 80px 40px 60px;
}

.split-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.split-right {
    flex: 1;
    padding: 40px 60px 40px 80px;
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.principle {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 8px;
}

.principle h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

.approach-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--secondary-color);
    font-weight: 700;
}

.approach-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.approach-step {
    flex: 1;
    background: white;
    padding: 35px 30px;
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 15px;
}

.approach-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.team-split {
    display: flex;
    align-items: center;
}

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

.expertise-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.badge {
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

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

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

.values-split-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 35px 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.cta-split {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    padding: 80px 0;
}

.cta-content {
    flex: 1;
    padding: 40px 80px 40px 60px;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 700;
}

.cta-content p {
    font-size: 17px;
    color: var(--text-light);
}

.cta-action {
    flex: 1;
    padding: 40px 60px 40px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button-large {
    display: inline-block;
    padding: 20px 50px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
}

.cta-button-large:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.3);
}

.hero-visual-alt svg {
    width: 100%;
    max-width: 400px;
}

.services-detail-section {
    padding: 80px 0;
}

.service-detail-split {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.service-detail-left {
    flex: 2;
}

.service-detail-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-detail-left p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-top: 25px;
}

.service-features li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

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

.service-detail-right {
    flex: 1;
}

.pricing-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    position: sticky;
    top: 100px;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price-details {
    margin-bottom: 25px;
}

.price-details p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.btn-select-service {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-select-service:hover {
    background: #2980b9;
}

.service-cta-split {
    display: flex;
    align-items: center;
    background: var(--secondary-color);
    color: white;
    padding: 60px 0;
}

.cta-left {
    flex: 1;
    padding: 40px 80px 40px 60px;
}

.cta-left h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-left p {
    font-size: 17px;
    opacity: 0.9;
}

.cta-right {
    flex: 1;
    padding: 40px 60px 40px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-quick-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quick-info-item span {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-info-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.contact-left {
    flex: 1;
    padding-right: 60px;
}

.contact-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-weight: 700;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.info-block a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

.contact-right {
    flex: 1;
    padding-left: 60px;
}

.map-placeholder {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder svg {
    width: 100%;
    height: auto;
}

.contact-approach-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-approach-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--secondary-color);
    font-weight: 700;
}

.approach-timeline {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

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

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.faq-split-section {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.faq-left {
    flex: 1;
    padding-right: 60px;
}

.faq-left h2 {
    font-size: 36px;
    color: var(--secondary-color);
    font-weight: 700;
}

.faq-right {
    flex: 2;
}

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

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.thanks-hero-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: var(--bg-light);
}

.thanks-left {
    flex: 1;
    padding: 60px 80px;
}

.success-icon {
    margin-bottom: 30px;
}

.thanks-left h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.selected-service-info {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
}

.selected-service-info p {
    margin: 0;
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-right {
    flex: 1;
    padding: 60px 80px;
    background: white;
}

.next-steps-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.next-steps-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.thanks-resources-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.resources-left {
    flex: 1;
    padding-right: 60px;
}

.resources-left h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 700;
}

.resources-left p {
    font-size: 17px;
    color: var(--text-light);
}

.resources-right {
    flex: 2;
}

.resource-cards {
    display: flex;
    gap: 30px;
}

.resource-card {
    flex: 1;
    background: var(--bg-light);
    padding: 35px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.thanks-contact-info {
    padding: 80px 0;
    background: var(--bg-light);
}

.thanks-contact-info h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--secondary-color);
    font-weight: 700;
}

.contact-options {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-option {
    flex: 1;
    text-align: center;
}

.contact-option h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-option p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-option a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-option a:hover {
    text-decoration: underline;
}

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

.legal-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.legal-content {
    padding: 60px 0 100px;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-text h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--secondary-color);
    font-weight: 700;
}

.legal-text h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.legal-text ul {
    margin: 20px 0 20px 40px;
    line-height: 1.8;
}

.legal-text ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-dark);
}

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

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

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

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

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

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

@media (max-width: 968px) {
    .hero-split,
    .value-split,
    .content-split,
    .team-split,
    .testimonial-split,
    .cta-split,
    .form-container-split,
    .service-detail-split,
    .contact-info-split,
    .faq-split-section,
    .thanks-hero-split,
    .thanks-resources-split,
    .service-cta-split,
    .page-hero-split {
        flex-direction: column;
    }

    .hero-left,
    .split-content,
    .split-left,
    .split-right,
    .testimonial-content,
    .testimonial-visual,
    .cta-content,
    .cta-action,
    .form-left,
    .form-right,
    .service-detail-left,
    .service-detail-right,
    .contact-left,
    .contact-right,
    .faq-left,
    .faq-right,
    .thanks-left,
    .thanks-right,
    .resources-left,
    .resources-right,
    .cta-left,
    .cta-right {
        padding: 40px 30px;
    }

    .hero-right,
    .split-visual,
    .page-hero-split .hero-right {
        min-height: 400px;
    }

    .hero-left h1,
    .page-hero-split .hero-left h1 {
        font-size: 36px;
    }

    .insight-grid,
    .approach-grid,
    .values-split-grid,
    .impact-metrics,
    .resource-cards,
    .contact-options {
        flex-direction: column;
    }

    .service-card,
    .value-item {
        min-width: 100%;
    }

    .nav-menu {
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 568px) {
    .hero-left h1 {
        font-size: 28px;
    }

    .services-header h2,
    .approach-section h2,
    .values-section h2 {
        font-size: 32px;
    }

    .stat-number {
        font-size: 36px;
    }

    .metric-value {
        font-size: 42px;
    }

    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }
}