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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2980b9;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 25px rgba(0, 0, 0, 0.15);
}

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);
}

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

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

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

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

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

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

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

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

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

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

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

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

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

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

.hero-left {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 60px;
}

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

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

.hero-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-right {
    background: var(--bg-light);
    overflow: hidden;
}

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

.btn-primary,
.btn-secondary,
.btn-service,
.btn-submit {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover,
.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--bg-white);
}

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

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

.btn-service {
    width: 100%;
    background: var(--primary-color);
    margin-top: 15px;
}

.btn-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

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

.trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

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

.trust-item strong {
    display: block;
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

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

.problem-section,
.solution-section,
.why-us-section {
    padding: 80px 0;
}

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

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

.why-us-section {
    background: var(--bg-white);
}

.split-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

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

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 17px;
    color: var(--text-dark);
}

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

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

.services-showcase h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 35px;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

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

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

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

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

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

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

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

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 50px 60px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-box h3 {
    font-size: 32px;
    color: var(--bg-white);
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

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

.process-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

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

.process-step h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

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

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

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 300px;
    max-width: 380px;
}

.quote-mark {
    font-size: 60px;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 15px;
    opacity: 0.3;
}

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

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    font-size: 17px;
    margin-bottom: 5px;
}

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

.why-list {
    margin-top: 30px;
}

.why-item {
    margin-bottom: 30px;
}

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

.why-item p {
    color: var(--text-dark);
    line-height: 1.7;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-wrapper h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.quote-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px 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(--secondary-color);
}

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

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    margin-top: 10px;
    font-size: 18px;
}

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

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

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

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 15px;
}

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

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

.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(--bg-white);
}

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

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

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

.btn-sticky {
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
    color: var(--bg-white);
}

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

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

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

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

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

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

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

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

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

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

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

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.about-intro {
    padding: 80px 0;
    background: var(--bg-white);
}

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

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

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

.value-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    flex: 1;
    min-width: 280px;
    box-shadow: var(--shadow);
}

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

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

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

.team-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

.stat-box strong {
    display: block;
    font-size: 48px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-box span {
    color: var(--text-dark);
    font-size: 16px;
}

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

.certificates-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.certs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.cert-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    min-width: 280px;
    box-shadow: var(--shadow);
}

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

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

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

.timeline-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding-top: 10px;
}

.timeline-content h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

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

.services-detailed {
    padding: 80px 0;
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail-header {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 30px;
}

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

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.service-detail-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-price-large {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 25px 0;
    padding: 20px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.service-price-large .price-value {
    font-size: 42px;
}

.service-details-list {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
}

.service-details-list h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.service-details-list ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-dark);
    font-size: 16px;
}

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

.featured-service {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    position: relative;
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 600;
}

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

.comparison-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

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

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.comparison-table thead th {
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
}

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

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

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

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

.faq-item p {
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.contact-item h4 {
    font-size: 19px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

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

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

.map-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.map-placeholder {
    background: var(--bg-white);
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.map-placeholder p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

.thanks-section {
    padding: 100px 0;
    background: var(--bg-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

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

.thanks-wrapper h1 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.thanks-info {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 35px;
}

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

.thanks-details {
    text-align: left;
    margin-bottom: 35px;
}

.thanks-details h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.thanks-details ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-dark);
    line-height: 1.7;
}

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

.thanks-contact {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 35px;
}

.thanks-contact p {
    margin-bottom: 10px;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.legal-page h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

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

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

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page ul li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: var(--text-dark);
}

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

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

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

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

    .service-detail-header,
    .service-detail.reverse .service-detail-header {
        flex-direction: column;
    }

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

    .timeline::before {
        left: 40px;
    }

    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

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

    .nav-toggle {
        display: block;
    }

    .hero-left {
        padding: 50px 30px;
    }

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

    .service-card {
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

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

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

    .form-wrapper {
        padding: 30px 20px;
    }
}