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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #059669;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

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

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

.logo a {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s;
    padding: 5px 0;
}

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

.nav-cta {
    display: flex;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

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

.btn-secondary {
    background: var(--secondary-color);
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s, background 0.2s;
}

.btn-secondary:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.2s, color 0.2s;
}

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

.hero-split {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    padding: 40px 0;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

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

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

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 4px;
}

.hero-right {
    margin-top: 40px;
}

.hero-right img {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.btn-hero {
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
}

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

.trust-bar {
    background: var(--bg-white);
    padding: 30px 20px;
    border-bottom: 1px solid var(--border-color);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.trust-text {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-logos span {
    font-weight: 600;
    color: var(--text-gray);
    font-size: 16px;
}

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

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

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

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

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

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

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

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

.features-asymmetric {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.feature-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-large {
    flex: 1 1 100%;
}

.feature-wide {
    flex: 1 1 100%;
}

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

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

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

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

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

.services-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    position: relative;
}

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

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-duration {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.service-content > p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    margin: 24px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 4px;
}

.price-note {
    font-size: 13px;
    color: var(--text-gray);
}

.btn-service {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    display: block;
    text-align: center;
    transition: background 0.2s;
}

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

.services-more {
    text-align: center;
    margin-top: 40px;
}

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

.testimonial-block {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 24px;
    border-left: 4px solid var(--primary-color);
}

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

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-dark);
    margin-bottom: 4px;
}

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

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
}

.link-arrow:hover {
    text-decoration: underline;
}

.cta-block {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

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

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

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

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

.btn-cta-large:hover {
    transform: scale(1.05);
}

.cta-note {
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.9;
}

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

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

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

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

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

.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;
    cursor: pointer;
}

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

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

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

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

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

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #9ca3af;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
}

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

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

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

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

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

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.9;
}

.page-header {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 60px 20px;
    text-align: center;
}

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

.header-subtitle {
    font-size: 20px;
    color: var(--text-gray);
}

.services-full {
    padding: 60px 20px;
}

.services-filter {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-item-image {
    flex: 1 1 300px;
    position: relative;
    min-height: 300px;
}

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

.service-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-item-content {
    flex: 2 1 400px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

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

.service-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 14px;
    color: var(--text-gray);
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 4px;
}

.service-includes {
    list-style: none;
    margin: 20px 0;
}

.service-includes li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-gray);
}

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

.service-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-price-display {
    display: flex;
    flex-direction: column;
}

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

.price-info {
    font-size: 13px;
    color: var(--text-gray);
}

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

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

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

.comparison-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    text-align: center;
}

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

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

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

.section-title-center {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

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

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

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

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

.story-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.8;
}

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

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

.value-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
}

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

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

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

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

.team-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    flex: 1 1 calc(25% - 23px);
    min-width: 250px;
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

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

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

.testimonial-long {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-long img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

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

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

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-meta strong {
    color: var(--text-dark);
    font-size: 16px;
}

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

.testimonial-year {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 600;
}

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

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

.stat-box {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    flex: 1 1 calc(25% - 23px);
    min-width: 200px;
}

.stat-number-large {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 12px;
}

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

.cta-simple {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: white;
}

.cta-simple h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

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

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

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

.contact-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    text-align: center;
}

.contact-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

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

.contact-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.contact-note {
    font-size: 14px;
    color: var(--text-gray);
}

.contact-cta-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.contact-cta-box {
    background: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-cta-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-cta-box p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.map-section {
    padding: 60px 20px;
    background: var(--bg-white);
}

.map-info {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

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

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
}

.map-directions {
    flex: 1 1 300px;
}

.map-directions h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.map-directions ul {
    list-style: none;
}

.map-directions li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
    line-height: 1.6;
}

.map-directions li:last-child {
    border-bottom: none;
}

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

.thanks-section {
    padding: 100px 20px;
    text-align: center;
    background: var(--bg-light);
}

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

.thanks-icon {
    color: var(--success-color);
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

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

.thanks-info-box {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-info-box h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
}

.thanks-steps {
    list-style: none;
    counter-reset: step-counter;
}

.thanks-steps li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
    line-height: 1.7;
    counter-increment: step-counter;
    padding-left: 40px;
    position: relative;
}

.thanks-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 16px;
    background: var(--primary-color);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.thanks-steps li:last-child {
    border-bottom: none;
}

.thanks-service-info {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: none;
}

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

.thanks-contact {
    font-size: 14px;
    color: var(--text-gray);
}

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

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

.legal-date {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-size: 14px;
}

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

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

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

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

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

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

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

.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(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

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

@media (min-width: 768px) {
    .hero-content {
        display: flex;
        align-items: center;
    }

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

    .hero-left {
        padding-right: 40px;
    }

    .hero-right {
        margin-top: 0;
    }
}

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

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

    .section-title,
    .section-header-center h2 {
        font-size: 28px;
    }

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

    .nav-links {
        flex-basis: 100%;
        justify-content: center;
        order: 3;
        margin-top: 12px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .service-item {
        flex-direction: column;
    }

    .service-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .testimonial-long {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-long img {
        margin: 0 auto;
    }

    .cta-content h2,
    .cta-simple h2 {
        font-size: 28px;
    }

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

    .map-info {
        flex-direction: column;
    }
}
