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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #4a90d9;
    --accent-color: #e8973a;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #2d2d2d;
    --text-light: #6c757d;
    --white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #28a745;
}

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

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

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

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

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

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

.centered {
    text-align: center;
}

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

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    min-height: 600px;
}

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

.btn-primary,
.btn-primary-large,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background: #d67c1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 151, 58, 0.4);
}

.btn-primary-large {
    background: var(--accent-color);
    color: var(--white);
    padding: 18px 40px;
    font-size: 18px;
}

.btn-primary-large:hover {
    background: #d67c1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 151, 58, 0.4);
}

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

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

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-text:hover {
    color: var(--secondary-color);
}

.trust-indicators {
    background: var(--light-bg);
    padding: 60px 0;
}

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

.stat-card {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

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

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

.split-layout,
.split-reverse {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 0;
}

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

.problem-section {
    background: var(--white);
}

.split-image {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.split-content {
    flex: 1;
    min-width: 300px;
}

.split-content h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

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

.highlight-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 24px;
}

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

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

.section-header h2 {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

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

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

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

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

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

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

.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.timeline-item {
    flex: 1;
    min-width: 180px;
    text-align: center;
}

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

.timeline-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.testimonials-split {
    display: flex;
    gap: 60px;
    padding: 100px 60px;
    background: var(--light-bg);
}

.testimonials-split .split-content {
    flex: 1.2;
}

.testimonials-split h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.testimonial-item {
    background: var(--white);
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.why-us-section {
    padding: 100px 60px;
    background: var(--white);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

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

.benefit-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

.benefit-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 141, 0.1);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.final-cta {
    padding: 80px 0;
    background: var(--light-bg);
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

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

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

.footer-col a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent-color);
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

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

.sticky-cta span {
    color: var(--white);
    font-weight: 600;
}

.btn-sticky {
    background: var(--white);
    color: var(--accent-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.btn-sticky:hover {
    background: var(--light-bg);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 100px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.about-intro {
    padding: 100px 60px;
}

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

.values-grid {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

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

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

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

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

.section-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.team-member {
    flex: 1 1 calc(25% - 23px);
    min-width: 240px;
    text-align: center;
}

.member-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}

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

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

.member-role {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.story-section {
    padding: 100px 60px;
    background: var(--white);
}

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

.stats-showcase {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-large {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-large .stat-number {
    font-size: 56px;
}

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

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

.lead-text {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

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

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

.service-tag {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-tag.featured {
    background: var(--accent-color);
    color: var(--white);
}

.service-tag.premium {
    background: linear-gradient(135deg, var(--accent-color), #d67c1a);
    color: var(--white);
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0 24px;
}

.price-tag.highlight {
    color: var(--accent-color);
}

.price-note {
    font-size: 16px;
    font-weight: 400;
    color: var(--success-color);
}

.service-list {
    margin: 24px 0;
    padding-left: 24px;
}

.service-list li {
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.featured-service {
    background: linear-gradient(to right, rgba(232, 151, 58, 0.03), transparent);
}

.complete-package {
    background: linear-gradient(to right, rgba(44, 95, 141, 0.03), transparent);
}

.benefit-box {
    background: var(--light-bg);
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.benefit-box h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.benefit-box p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
}

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

.comparison-table {
    max-width: 1000px;
    margin: 60px auto 0;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-header,
.comparison-row {
    display: flex;
}

.comparison-header {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

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

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.highlighted {
    background: rgba(232, 151, 58, 0.05);
}

.comparison-cell {
    flex: 1;
    padding: 20px;
    font-size: 15px;
}

.comparison-header .comparison-cell:first-child {
    flex: 0.8;
}

.comparison-row .comparison-cell:first-child {
    flex: 0.8;
}

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

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-light);
}

.process-arrow {
    font-size: 24px;
    color: var(--primary-color);
}

.contact-main {
    padding: 100px 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 32px;
}

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

.contact-icon {
    font-size: 32px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.contact-item a {
    color: var(--primary-color);
}

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

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

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

.map-placeholder {
    background: var(--light-bg);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
    border: 2px dashed var(--border-color);
}

.map-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.map-note {
    font-style: italic;
    font-size: 14px;
    margin-top: 12px;
}

.thanks-section {
    padding: 120px 0;
    background: var(--light-bg);
    min-height: 70vh;
}

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

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

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.thanks-details {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
    text-align: left;
}

.thanks-details p {
    font-size: 15px;
    color: var(--text-dark);
}

.thanks-next {
    margin: 48px 0;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 32px;
}

.next-steps {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.next-step {
    flex: 1;
    min-width: 180px;
    max-width: 200px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.next-step p {
    font-size: 14px;
    color: var(--text-light);
}

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

.legal-content {
    padding: 60px 0 100px;
    background: var(--white);
}

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

.legal-content h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: var(--primary-color);
}

.legal-content h4 {
    font-size: 18px;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

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

.legal-content ul,
.legal-content ol {
    margin: 16px 0 16px 32px;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

    .hero-content {
        padding: 60px 30px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

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

    .split-layout,
    .split-reverse {
        flex-direction: column;
        padding: 60px 30px;
    }

    .testimonials-split {
        flex-direction: column;
        padding: 60px 30px;
    }

    .why-us-section {
        padding: 60px 30px;
    }

    .contact-main,
    .service-detail,
    .story-section,
    .about-intro {
        padding: 60px 30px;
    }

    .services-grid {
        gap: 20px;
    }

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

    .comparison-header,
    .comparison-row {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        width: 100%;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .section-header h2 {
        font-size: 32px;
    }

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

    .cta-box {
        padding: 40px 24px;
    }

    .cta-box h2 {
        font-size: 28px;
    }

    .form-wrapper {
        padding: 40px 24px;
    }

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

    .process-timeline {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

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

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

    .team-member {
        max-width: 300px;
    }

    .sticky-cta {
        flex-direction: column;
        bottom: 10px;
        right: 10px;
        left: 10px;
        padding: 16px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

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

    .page-hero h1 {
        font-size: 28px;
    }

    .btn-primary-large {
        padding: 16px 32px;
        font-size: 16px;
    }
}
