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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --danger-color: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-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(--primary-dark);
}

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

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

.centered {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.navbar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px 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;
}

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

.nav-links {
    display: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.hero-left {
    flex: 1;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.hero-left h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-primary-large {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 20px 48px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-primary-large:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

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

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

.cta-inline {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

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

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

.hero-right {
    flex: 1;
    min-height: 400px;
}

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

.trust-indicators {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-card {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

.problem-amplification {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.split-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

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

.split-content {
    flex: 1;
}

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

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

.split-image {
    flex: 1;
    width: 100%;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

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

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

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

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

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

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

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

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

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

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

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

.service-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

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

.btn-select-service {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonials-inline {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    color: white;
}

.testimonials-inline h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.testimonial-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

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

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-intro {
    margin-bottom: 30px;
}

.form-intro h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.form-intro p {
    color: var(--text-light);
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 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);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

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

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

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

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.urgency-block {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
}

.urgency-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.urgency-block p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.how-it-works {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.how-it-works h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--secondary-color);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 60px;
}

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

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

.final-cta-sticky {
    position: sticky;
    bottom: 0;
    z-index: 999;
}

.sticky-bar {
    background-color: var(--secondary-color);
    padding: 16px 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

.sticky-text {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.sticky-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #d97706;
    color: white;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

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

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

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

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

.footer-column ul li a:hover {
    color: white;
}

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

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

.page-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.lead-text {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.story-section,
.mission-section,
.values-section,
.team-section,
.timeline-section,
.guarantee-section {
    padding: 80px 20px;
}

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

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

.mission-statement {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

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

.values-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--secondary-color);
}

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

.value-card {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

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

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

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

.team-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

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

.stat-block {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 12px;
}

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

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

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

.timeline-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--secondary-color);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 20px;
}

.timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 80px;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

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

.guarantee-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.guarantee-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.service-detail,
.service-detail.alternate {
    padding: 80px 20px;
}

.service-detail {
    background-color: var(--bg-white);
}

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

.service-label {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

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

.checklist {
    list-style: none;
    margin: 24px 0;
}

.checklist li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.service-detail-featured {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2ff 100%);
}

.featured-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.service-price-hero {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-savings {
    font-size: 18px;
    color: var(--success-color);
    font-weight: 600;
    margin-bottom: 40px;
}

.package-benefits {
    margin: 40px 0;
}

.package-benefits h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.benefit-check {
    color: var(--success-color);
    font-size: 20px;
    font-weight: 700;
}

.package-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.comparison-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.comparison-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

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

.contact-info {
    flex: 1;
}

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

.contact-block {
    margin-bottom: 30px;
}

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

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

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

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px;
    color: white;
}

.map-overlay p {
    font-size: 18px;
    font-weight: 600;
}

.quick-contact,
.emergency-contact,
.faq-section {
    padding: 80px 20px;
}

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

.quick-contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

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

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

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

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

.emergency-contact {
    background-color: var(--secondary-color);
    color: white;
}

.emergency-contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.thanks-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

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

.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.thanks-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.thanks-details,
.thanks-service-info,
.thanks-additional,
.thanks-reassurance {
    padding: 80px 20px;
}

.thanks-details {
    background-color: var(--bg-white);
}

.thanks-details h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--secondary-color);
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item-thanks {
    display: flex;
    gap: 20px;
}

.step-number-thanks {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 60px;
}

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

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

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

.info-box {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.info-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.info-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.info-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.thanks-additional {
    background-color: var(--bg-white);
}

.thanks-additional h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--secondary-color);
}

.additional-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.additional-card {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.additional-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: var(--primary-dark);
}

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

.thanks-reassurance h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.thanks-reassurance p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.7;
}

.legal-page {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

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

.legal-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content {
    line-height: 1.8;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.legal-content li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-content strong {
    color: var(--secondary-color);
}

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

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

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

.cookies-table th {
    font-weight: 600;
    color: var(--secondary-color);
}

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

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

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

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

    .hero-left,
    .hero-right {
        flex: 1;
    }

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

    .hero-left h1 {
        font-size: 48px;
    }

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

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

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

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

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .testimonial-blocks {
        flex-direction: row;
    }

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

    .step-item {
        flex: 1 1 calc(50% - 15px);
    }

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

    .footer-column {
        flex: 1;
    }

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

    .value-card {
        flex: 1 1 calc(50% - 15px);
    }

    .team-stats {
        flex-direction: row;
    }

    .stat-block {
        flex: 1;
    }

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

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

    .additional-card {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero-left h1 {
        font-size: 56px;
    }

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

    .service-card {
        flex: 1 1 calc(33.333% - 20px);
    }

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

    .step-item {
        flex: 1 1 calc(25% - 23px);
        flex-direction: column;
    }
}