/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

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

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-right a {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

.nav-right a:hover,
.nav-right a.active {
    color: #3498db;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #3498db;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.cta-inline {
    display: inline-block;
    color: #3498db;
    font-weight: 600;
    font-size: 17px;
}

.cta-inline:hover {
    color: #2980b9;
}

/* Trust Bar */
.trust-bar {
    background: #2c3e50;
    color: #fff;
    padding: 40px 20px;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    opacity: 0.9;
}

/* Split Sections */
.split-section {
    display: flex;
}

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

.split-image {
    flex: 1;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.split-content .cta-inline {
    margin-top: 16px;
}

/* Services Grid Section */
.services-grid {
    padding: 100px 20px;
    background: #f8f9fa;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 18px;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    border: 2px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
}

.service-card.featured {
    border-color: #3498db;
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.15);
}

.service-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #3498db;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

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

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}

.service-price {
    margin: 24px 0;
    padding: 20px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.price-amount {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #888;
}

.btn-select {
    width: 100%;
    padding: 14px 24px;
    background: #3498db;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
}

.btn-select:hover {
    background: #2980b9;
}

/* Steps List */
.steps-list {
    margin-top: 30px;
}

.step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    line-height: 1;
}

.step-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

/* Form Section */
.form-section {
    padding: 100px 20px;
    background: #ffffff;
}

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

.form-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.selected-service {
    font-size: 18px;
    color: #3498db;
    font-weight: 600;
    margin-top: 12px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background: #27ae60;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 16px;
}

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

/* Testimonials */
.testimonials-alt {
    padding: 100px 20px;
    background: #f8f9fa;
}

.testimonials-alt h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.testimonial-item {
    flex: 1;
    background: #fff;
    padding: 40px 32px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
}

/* CTA Floating Section */
.cta-floating-section {
    padding: 80px 20px;
    background: #ffffff;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: #fff;
}

.cta-box h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 17px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #667eea;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
}

.btn-cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Footer Split */
.footer-split {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

.footer-split {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 15px;
    opacity: 0.8;
}

.footer-right {
    flex: 1;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-column a {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-column a:hover {
    opacity: 1;
    color: #3498db;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.7;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 16px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 90;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta span {
    font-size: 16px;
    font-weight: 600;
}

.btn-sticky {
    padding: 12px 28px;
    background: #3498db;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
}

.btn-sticky:hover {
    background: #2980b9;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    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: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.btn-accept {
    background: #27ae60;
    color: #fff;
}

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

.btn-reject {
    background: #95a5a6;
    color: #fff;
}

.btn-reject:hover {
    background: #7f8c8d;
}

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 400px;
    background: #f8f9fa;
}

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

.hero-content-left h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 18px;
    color: #555;
}

.hero-image-right {
    flex: 1;
    overflow: hidden;
}

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

/* Content Split */
.content-split {
    display: flex;
}

.content-split .split-image {
    flex: 0 0 45%;
}

.content-split .split-content {
    flex: 1;
}

/* Values Section */
.values-section {
    padding: 100px 20px;
    background: #ffffff;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(50% - 40px);
    min-width: 280px;
    text-align: center;
}

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

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

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

.checklist li {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

/* Team Numbers */
.team-numbers {
    padding: 80px 20px;
    background: #f8f9fa;
}

.team-numbers h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.numbers-grid {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.number-box {
    flex: 1;
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 8px;
}

.big-number {
    display: block;
    font-size: 52px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 12px;
}

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

/* CTA Section Centered */
.cta-section-centered {
    padding: 80px 20px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #fff;
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-section-centered p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 48px;
    background: #fff;
    color: #3498db;
    font-size: 17px;
    font-weight: 700;
    border-radius: 6px;
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Services Detailed Page */
.page-header-full {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.page-header-full h1 {
    font-size: 52px;
    margin-bottom: 16px;
}

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

.services-detailed {
    padding: 80px 20px;
    background: #f8f9fa;
}

.service-row {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    border: 2px solid #e8e8e8;
}

.service-row.featured-row {
    border-color: #3498db;
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.15);
}

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

.service-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #e8e8e8;
    color: #555;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-badge.popular {
    background: #3498db;
    color: #fff;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-desc {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 28px;
}

.service-detail-content h4 {
    font-size: 18px;
    margin: 24px 0 12px;
    color: #2c3e50;
}

.benefits-list {
    list-style: none;
    margin: 16px 0;
}

.benefits-list li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.benefits-list li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #3498db;
    font-size: 24px;
    line-height: 16px;
}

.service-time {
    margin-top: 24px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 15px;
    color: #555;
}

.service-detail-price {
    flex: 0 0 280px;
    display: flex;
    align-items: flex-start;
}

.price-box {
    width: 100%;
    padding: 32px 24px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.price-box.featured-price {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.price-large {
    display: block;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.price-note {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 24px;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background: #3498db;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
}

.price-box.featured-price .btn-select-service {
    background: #fff;
    color: #667eea;
}

.btn-select-service:hover {
    transform: translateY(-2px);
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 20px;
    background: #ffffff;
}

.guarantee-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.guarantee-item {
    flex: 1;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.guarantee-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.guarantee-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.faq-item {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

/* CTA Section Final */
.cta-section-final {
    padding: 100px 20px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #fff;
    text-align: center;
}

.cta-section-final h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-section-final p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

/* Contact Page */
.contact-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-split-section {
    display: flex;
    max-width: 1200px;
    margin: -60px auto 0;
    position: relative;
    z-index: 10;
}

.contact-info-side {
    flex: 1;
    background: #fff;
    padding: 60px 50px;
    border-radius: 12px 0 0 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.contact-info-side h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-block {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

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

.contact-detail h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

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

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
}

.contact-note p {
    font-size: 15px;
    color: #555;
}

.contact-map-side {
    flex: 1;
    overflow: hidden;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

/* Contact Methods */
.contact-methods {
    padding: 100px 20px;
    background: #ffffff;
}

.contact-methods h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.method-card {
    flex: 1;
    padding: 40px 32px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.method-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.method-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.btn-method {
    display: inline-block;
    padding: 12px 28px;
    background: #3498db;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
}

.btn-method:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Response Info */
.response-info {
    padding: 80px 20px;
    background: #f8f9fa;
}

.response-info h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.timeline-list {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.timeline-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.timeline-content p {
    font-size: 16px;
    color: #666;
}

/* Quick Info Section */
.quick-info-section {
    padding: 80px 20px;
    background: #ffffff;
}

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

.info-box {
    flex: 1;
    padding: 40px 32px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.info-box h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

/* Thanks Page */
.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 72px;
    margin-bottom: 24px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.thanks-details {
    margin: 32px 0;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
}

.selected-service-display {
    text-align: left;
}

.selected-service-display h4 {
    font-size: 16px;
    color: #888;
    margin-bottom: 8px;
}

.service-name-display {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.service-price-display {
    font-size: 18px;
    color: #3498db;
    font-weight: 600;
}

.thanks-info {
    margin: 40px 0;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    gap: 20px;
    margin-top: 24px;
}

.step-box {
    flex: 1;
    padding: 24px 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.step-box p {
    font-size: 14px;
    color: #555;
}

.thanks-contact {
    margin: 32px 0;
}

.thanks-contact p {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
}

.contact-email {
    font-size: 17px;
    color: #3498db;
    font-weight: 600;
}

.contact-email:hover {
    color: #2980b9;
}

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

.btn-primary {
    padding: 14px 32px;
    background: #3498db;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    padding: 14px 32px;
    background: #95a5a6;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

/* Legal Pages */
.legal-page {
    padding: 80px 20px;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-section h4 {
    font-size: 19px;
    margin: 20px 0 12px;
    color: #34495e;
}

.legal-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul,
.legal-section ol {
    margin: 16px 0 16px 24px;
}

.legal-section li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section a {
    color: #3498db;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #2980b9;
}

.legal-back {
    margin-top: 60px;
    text-align: center;
}

.btn-back {
    display: inline-block;
    padding: 14px 32px;
    background: #3498db;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
}

.btn-back:hover {
    background: #2980b9;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split,
    .split-section,
    .content-split,
    .page-hero-split,
    .contact-split-section {
        flex-direction: column;
    }

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

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

    .service-detail-price {
        flex: auto;
    }

    .testimonials-grid,
    .numbers-grid,
    .guarantee-grid,
    .methods-grid,
    .info-boxes {
        flex-direction: column;
    }

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

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

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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

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

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

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

    .contact-info-side,
    .contact-map-side {
        border-radius: 12px;
    }

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

@media (max-width: 600px) {
    .hero-left,
    .split-content,
    .hero-content-left {
        padding: 40px 24px;
    }

    .trust-stats {
        flex-direction: column;
        gap: 24px;
    }

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

    .section-header-center h2,
    .values-section h2,
    .testimonials-alt h2 {
        font-size: 32px;
    }
}
