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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c5f8d;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

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

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

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

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

.main-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.nav-menu a {
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

.nav-menu a.active {
    color: var(--accent-color);
}

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

.nav-menu a:hover::after {
    width: 100%;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #1a4d7a 0%, #2c5f8d 100%);
}

.hero-text-container {
    max-width: 560px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-left h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-left p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 36px;
    line-height: 1.7;
}

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

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

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
    color: #fff;
}

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

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

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

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

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

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

.split-container {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    gap: 80px;
    align-items: center;
    padding: 0 40px;
}

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

.split-content {
    flex: 1;
}

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

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

.split-visual {
    flex: 1;
}

.split-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

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

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

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

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

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    flex: 1 1 calc(33.333% - 32px);
    min-width: 320px;
    max-width: 400px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.service-icon {
    margin-bottom: 24px;
    border-radius: 6px;
    overflow: hidden;
    height: 200px;
}

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

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

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

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

.btn-select-service {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

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

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

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

.cta-content-centered h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

.btn-cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-color);
}

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

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

.benefits-list li {
    padding: 16px 0 16px 40px;
    position: relative;
    font-size: 17px;
    border-bottom: 1px solid var(--border-color);
}

.benefits-list li:last-child {
    border-bottom: none;
}

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

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

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

.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 36px;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
    box-shadow: var(--shadow-sm);
}

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

.testimonial-author {
    border-top: 2px solid var(--border-color);
    padding-top: 16px;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

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

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

.form-split-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    padding: 0 40px;
}

.form-left-content {
    flex: 1;
}

.form-left-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.form-left-content p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.form-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.form-right {
    flex: 1;
    background: var(--bg-light);
    padding: 48px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    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);
}

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

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
}

.form-success h3 {
    color: #155724;
    margin-bottom: 12px;
    font-size: 24px;
}

.form-success p {
    color: #155724;
    font-size: 16px;
    margin-bottom: 8px;
}

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

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.btn-large {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 18px 48px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-large:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.main-footer {
    background: #1a2332;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 40px;
    flex-wrap: wrap;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(10px);
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    color: #fff;
    flex: 1;
    min-width: 300px;
    font-size: 15px;
}

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

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

.btn-accept {
    background: var(--accent-color);
    color: #fff;
}

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

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-reject:hover {
    border-color: #fff;
}

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

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

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

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

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

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

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

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

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

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

.timeline-content {
    flex: 1;
    padding-left: 40px;
}

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

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

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

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    font-size: 17px;
    color: var(--text-dark);
}

.team-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

.cert-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.cert-list li {
    padding: 20px 0 20px 48px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    font-size: 17px;
}

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

.cta-about {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 40px;
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

.btn-cta-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

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

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

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 48px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

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

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

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

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

.service-includes li {
    padding: 12px 0 12px 32px;
    position: relative;
}

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

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

.service-detail-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.btn-service-cta {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-service-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: #fff;
}

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

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

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

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

.cta-services {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 40px;
    text-align: center;
}

.cta-services h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.btn-cta-large {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 18px 48px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

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

.contact-split {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-info {
    flex: 1;
}

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

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

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

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

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

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 77, 122, 0.9);
    padding: 20px;
    color: #fff;
}

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

.directions-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.directions-info p {
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.7;
}

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

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

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

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-item {
    flex: 1;
    min-width: 350px;
    background: var(--bg-light);
    padding: 28px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

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

.thanks-hero {
    padding: 100px 40px;
    background: var(--bg-light);
}

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

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--success-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    margin: 0 auto 32px;
    box-shadow: 0 4px 16px rgba(39, 174, 96, 0.3);
}

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

.lead-text {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.service-confirmation {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 6px;
    margin: 28px 0;
    display: none;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.steps-list li {
    padding: 12px 0 12px 36px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.steps-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

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

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.thanks-info {
    padding: 80px 40px;
    background: var(--bg-white);
}

.info-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.info-card p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 8px;
}

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

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

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

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

    .split-container,
    .service-detail-split,
    .form-split-container,
    .contact-split {
        flex-direction: column;
        gap: 40px;
    }

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

    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-left h2 {
        font-size: 36px;
    }

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

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

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

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

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

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

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

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

    .nav-menu {
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-left {
        padding: 60px 32px;
    }

    .container,
    .container-wide,
    .container-narrow {
        padding: 0 16px;
    }

    .split-container,
    .service-detail-split,
    .form-split-container {
        padding: 0 20px;
    }

    .form-right {
        padding: 32px 24px;
    }
}
