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

:root {
    --primary-color: #1a5490;
    --secondary-color: #f39c12;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --error-color: #e74c3c;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-dark);
}

.hero-split {
    display: flex;
    min-height: calc(100vh - 70px);
}

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

.split-left {
    padding: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.split-right {
    padding: 0;
}

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

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 28px;
    font-weight: 800;
}

.hero-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.cta-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.trust-badges {
    background: var(--white);
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.badge-item {
    text-align: center;
}

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

.badge-text {
    display: block;
    font-size: 15px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.services-intro p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.link-arrow {
    display: inline-block;
    margin-top: 16px;
    font-weight: 600;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(6px);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d3d6b 100%);
    color: var(--white);
    border-color: var(--primary-color);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-card.featured p {
    color: rgba(255,255,255,0.9);
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card.featured .price {
    color: var(--secondary-color);
}

.btn-select-service {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-select-service:hover {
    background: transparent;
    color: var(--primary-color);
}

.service-card.featured .btn-select-service {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.service-card.featured .btn-select-service:hover {
    background: transparent;
    color: var(--white);
}

.why-us-asymmetric {
    padding: 100px 0;
    background: var(--light-bg);
}

.asymmetric-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 40px;
    margin-bottom: 40px;
    line-height: 1.2;
}

.reason-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.reason-item strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

.image-block {
    flex: 1;
}

.image-block img {
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.offset-right {
    transform: translateX(-40px);
}

.offset-left {
    transform: translateX(40px);
}

.more-services-compact {
    padding: 80px 0;
    background: var(--white);
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

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

.compact-card {
    flex: 1;
    min-width: 280px;
    background: var(--light-bg);
    padding: 36px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.compact-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.compact-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.compact-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonials-flow {
    padding: 100px 0;
    background: var(--dark-bg);
    color: var(--white);
}

.testimonials-flow h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--white);
}

.testimonials-slider {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: rgba(255,255,255,0.05);
    padding: 36px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: rgba(255,255,255,0.9);
}

.testimonial-author {
    display: block;
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.form-intro-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d3d6b 100%);
    color: var(--white);
    padding: 60px;
    border-radius: 12px 0 0 12px;
}

.form-intro-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white);
}

.form-intro-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.9);
}

.benefit-checklist {
    list-style: none;
}

.benefit-checklist li {
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    font-size: 17px;
}

.benefit-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

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

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

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

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

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

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

.btn-submit:hover {
    background: #0d3d6b;
    transform: translateY(-2px);
}

.final-cta-banner {
    padding: 80px 0;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.final-cta-banner h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta-banner p {
    font-size: 20px;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.95);
}

.main-footer {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
}

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

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

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

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

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

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

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

.cookie-content p {
    margin: 0;
    font-size: 15px;
}

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

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.btn-cookie.reject:hover {
    background: var(--white);
    color: var(--dark-bg);
}

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

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

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
}

.about-story {
    padding: 100px 0;
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

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

.certifications h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

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

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

.cert-list li {
    padding-left: 36px;
    margin-bottom: 16px;
    position: relative;
    font-size: 17px;
}

.cert-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 22px;
}

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

.team-approach h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.team-approach p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.why-local {
    padding: 80px 0;
    background: var(--white);
}

.why-local h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.reasons-columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.reason-col {
    flex: 1;
    min-width: 280px;
}

.reason-col h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.reason-col p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-about {
    padding: 80px 0;
    background: var(--light-bg);
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

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

.services-hero {
    background: linear-gradient(135deg, #0d3d6b 0%, var(--primary-color) 100%);
}

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

.service-detailed-card {
    display: flex;
    gap: 60px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.service-detailed-card.reverse {
    flex-direction: row-reverse;
}

.service-img-wrapper {
    flex: 1;
    min-width: 400px;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detailed-content {
    flex: 1;
    padding: 50px;
}

.service-detailed-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.service-detailed-content h4 {
    font-size: 19px;
    margin-bottom: 16px;
    margin-top: 24px;
    color: var(--primary-color);
}

.service-detailed-content ul {
    margin-bottom: 24px;
}

.service-detailed-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-light);
    padding-left: 24px;
    position: relative;
}

.service-detailed-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.service-price-block {
    background: var(--light-bg);
    padding: 20px 24px;
    border-radius: 8px;
    margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.additional-info {
    padding: 60px 0;
    background: var(--white);
}

.additional-info h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

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

.info-highlight {
    background: var(--light-bg);
    padding: 20px 24px;
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
    margin-top: 24px;
    font-size: 16px;
}

.services-cta {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.services-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.95);
}

.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d3d6b 100%);
}

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

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

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

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

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

.contact-note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

.contact-map-block {
    flex: 1;
}

.contact-map-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
}

.map-info {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-contact {
    padding: 80px 0;
    background: var(--white);
}

.faq-contact h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
}

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

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

.contact-guarantee h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

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

.guarantee-item {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 36px;
    border-radius: 12px;
    text-align: center;
}

.guarantee-item h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

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

.thanks-content {
    text-align: center;
    background: var(--white);
    padding: 80px 60px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.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: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-info {
    margin-bottom: 32px;
}

.selected-service {
    font-size: 18px;
    color: var(--primary-color);
    background: var(--light-bg);
    padding: 16px 24px;
    border-radius: 8px;
    display: inline-block;
}

.thanks-details,
.thanks-timeline {
    text-align: left;
    margin: 40px 0;
    background: var(--light-bg);
    padding: 32px;
    border-radius: 8px;
}

.thanks-details h3,
.thanks-timeline h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.thanks-details ul {
    list-style: none;
}

.thanks-details ul li {
    padding-left: 32px;
    margin-bottom: 12px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
}

.thanks-details ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-timeline p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.thanks-extra {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

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

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

.legal-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-page strong {
    color: var(--text-dark);
    font-weight: 600;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
}

.legal-actions {
    margin-top: 40px;
    text-align: center;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

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

.cookies-table td {
    color: var(--text-light);
}

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

    .split-left {
        padding: 60px 24px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .split-container {
        flex-direction: column;
        gap: 40px;
    }

    .split-container.reverse {
        flex-direction: column;
    }

    .asymmetric-layout {
        flex-direction: column;
        gap: 40px;
    }

    .offset-right,
    .offset-left {
        transform: none;
    }

    .service-detailed-card {
        flex-direction: column;
    }

    .service-detailed-card.reverse {
        flex-direction: column;
    }

    .service-img-wrapper {
        min-width: 100%;
        height: 300px;
    }

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

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

    .mobile-toggle {
        display: block;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        gap: 16px;
    }

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

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

    .badges-grid {
        gap: 24px;
    }

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

    .services-intro h2,
    .section-title-center {
        font-size: 32px;
    }

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

    .testimonials-slider {
        flex-direction: column;
    }

    .form-intro-bg {
        padding: 40px 24px;
        border-radius: 12px 12px 0 0;
    }

    .contact-form {
        padding: 40px 24px;
        border-radius: 0 0 12px 12px;
    }

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

    .service-detailed-content {
        padding: 32px 24px;
    }

    .contact-info-block {
        padding: 32px 24px;
    }

    .thanks-content {
        padding: 60px 24px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

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

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

    .sticky-cta {
        bottom: 12px;
        right: 12px;
    }
}

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

    .split-left {
        padding: 40px 20px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
}