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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #e67e22;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-color: #ddd;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

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

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

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

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

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

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

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

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
    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 {
    width: 100%;
}

.hero-split {
    display: flex;
    min-height: 650px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
    align-items: center;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.hero-left h1 {
    font-size: 56px;
    line-height: 1.1;
    color: var(--dark-color);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.5;
}

.hero-right {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

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

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    align-self: flex-start;
    box-shadow: var(--shadow);
}

.cta-primary:hover {
    background: #d47520;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-secondary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
}

.cta-secondary:hover {
    background: #234b6d;
    transform: translateY(-2px);
}

.trust-indicators {
    background: var(--light-color);
    padding: 80px 40px;
}

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

.trust-left {
    flex: 1;
    display: flex;
    gap: 30px;
}

.trust-badge {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.badge-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
}

.badge-text {
    font-size: 16px;
    color: #666;
}

.trust-right {
    flex: 1;
}

.trust-right h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.trust-right p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.services-preview {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-split {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.header-left {
    flex: 1;
}

.header-left h2 {
    font-size: 44px;
    color: var(--dark-color);
}

.header-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-right p {
    font-size: 19px;
    color: #666;
}

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

.service-card-split {
    display: flex;
    gap: 50px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

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

.service-visual {
    flex: 1;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-split:hover .service-visual img {
    transform: scale(1.05);
}

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    color: var(--dark-color);
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-top: 10px;
}

.service-cta {
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #234b6d;
    transform: translateX(4px);
}

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

.process-section {
    background: var(--light-color);
    padding: 100px 40px;
}

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

.process-content {
    flex: 1;
}

.process-content h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

.step-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.step h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.step p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.process-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

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

.testimonials-split {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.testimonials-header h2 {
    font-size: 44px;
    color: var(--dark-color);
}

.testimonials-container {
    display: flex;
    gap: 35px;
}

.testimonial-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

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

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

.testimonial-author span {
    color: #999;
    font-size: 14px;
}

.form-section-split {
    background: var(--primary-color);
    padding: 100px 40px;
}

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
}

.form-intro {
    flex: 1;
    color: white;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

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

.form-benefits li {
    font-size: 17px;
    padding-left: 30px;
    position: relative;
}

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

.form-wrapper {
    flex: 1;
    background: white;
    padding: 45px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 141, 0.1);
}

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

.btn-submit:hover {
    background: #d47520;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.final-cta {
    background: var(--dark-color);
    padding: 100px 40px;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 46px;
    color: white;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}

.cta-white {
    display: inline-block;
    background: white;
    color: var(--dark-color);
    padding: 18px 45px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
}

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

.main-footer {
    background: #0f1419;
    color: white;
    padding: 60px 40px 30px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

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

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

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

.sticky-cta a:hover {
    background: #d47520;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(230, 126, 34, 0.5);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), #1a4568);
    padding: 100px 40px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 52px;
    color: white;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
}

.services-detailed {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-left {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

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

.service-detail-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-detail-right h2 {
    font-size: 38px;
    color: var(--dark-color);
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 15px 0;
}

.feature-item {
    font-size: 16px;
    color: #666;
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 20px 0;
}

.price-label {
    font-size: 16px;
    color: #666;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
}

.service-detail-cta {
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.service-detail-cta:hover {
    background: #234b6d;
    transform: translateX(4px);
}

.pricing-note {
    background: var(--light-color);
    padding: 70px 40px;
    text-align: center;
}

.pricing-note-content {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-note-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.pricing-note-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.about-story {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    gap: 70px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

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

.values-section {
    background: var(--light-color);
    padding: 90px 40px;
    text-align: center;
}

.values-section h2 {
    font-size: 44px;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.value-card {
    flex: 1;
    background: white;
    padding: 45px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.value-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

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

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.team-section {
    padding: 90px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-split {
    display: flex;
    gap: 70px;
    align-items: center;
}

.team-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

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

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.team-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.team-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.team-features li {
    font-size: 17px;
    color: #666;
    padding-left: 30px;
    position: relative;
}

.team-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.stats-section {
    background: var(--primary-color);
    padding: 80px 40px;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.approach-section {
    padding: 90px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-split {
    display: flex;
    gap: 70px;
    align-items: center;
}

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

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.approach-highlights {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-item {
    background: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.highlight-item strong {
    display: block;
    font-size: 19px;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.highlight-item p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.approach-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

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

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

.cta-about-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-about-content h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.cta-about-content p {
    font-size: 19px;
    color: #666;
    margin-bottom: 35px;
}

.contact-main {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.contact-info {
    flex: 1;
}

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

.contact-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

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

.contact-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 8px;
}

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

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

.contact-note {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

.contact-visual {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.contact-overlay h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.contact-overlay p {
    font-size: 16px;
    opacity: 0.9;
}

.contact-map-section {
    background: var(--light-color);
    padding: 80px 40px;
}

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

.map-container h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.map-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.map-placeholder img {
    width: 100%;
    height: auto;
}

.contact-faq {
    padding: 90px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

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

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

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

.contact-cta-content h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
}

.contact-cta-content p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

.thanks-hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
    margin: 0 auto 30px;
}

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

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.thanks-service {
    margin: 30px 0;
}

.service-confirmation {
    font-size: 18px;
    color: var(--primary-color);
    background: var(--light-color);
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-block;
}

.thanks-next {
    margin: 50px 0;
}

.thanks-next h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.next-steps {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.next-step {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.next-step .step-number {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.next-step p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

.btn-primary {
    background: var(--secondary-color);
    color: white;
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 700;
}

.btn-primary:hover {
    background: #d47520;
}

.btn-secondary {
    background: var(--primary-color);
    color: white;
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: #234b6d;
}

.thanks-info {
    background: var(--light-color);
    padding: 60px 40px;
}

.info-boxes {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.info-box {
    flex: 1;
    background: white;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

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

.info-box p {
    font-size: 16px;
    color: #666;
}

.legal-page {
    padding: 60px 40px 100px;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.legal-intro {
    font-size: 16px;
    color: #999;
    margin-bottom: 40px;
}

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

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

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

.legal-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content li {
    list-style: disc;
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
}

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

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

@media (max-width: 1024px) {
    .hero-split,
    .split-container,
    .service-card-split,
    .process-split,
    .form-container-split,
    .service-detail-split,
    .about-split,
    .team-split,
    .approach-split,
    .contact-split {
        flex-direction: column;
    }

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

    .values-grid,
    .stats-container,
    .testimonials-container {
        flex-wrap: wrap;
    }

    .value-card,
    .testimonial-card {
        min-width: 250px;
    }

    .next-steps {
        flex-direction: column;
    }

    .footer-content {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .logo {
        font-size: 22px;
    }

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

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

    .section-header-split {
        flex-direction: column;
        gap: 20px;
    }

    .header-left h2,
    .trust-right h2,
    .process-content h2,
    .testimonials-header h2 {
        font-size: 32px;
    }

    .page-hero-content h1,
    .final-cta-content h2 {
        font-size: 36px;
    }

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

    .sticky-cta a {
        padding: 12px 24px;
        font-size: 15px;
    }

    .testimonials-container,
    .values-grid,
    .stats-container {
        flex-direction: column;
    }

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

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

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

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

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

    .cookie-content {
        flex-direction: column;
    }

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