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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

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

/* Navigation */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand a {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #10b981;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1f2937;
    transition: all 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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 {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #10b981;
    text-decoration: underline;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-cta,
.btn-cta-large,
.btn-submit,
.btn-select-service {
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    display: inline-block;
}

.btn-primary {
    background: #10b981;
    color: #ffffff;
}

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

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1f2937;
}

.btn-cta,
.btn-cta-large {
    background: #10b981;
    color: #ffffff;
    font-size: 1.1rem;
}

.btn-cta:hover,
.btn-cta-large:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-cta-large {
    padding: 16px 40px;
    font-size: 1.2rem;
}

.btn-submit {
    background: #10b981;
    color: #ffffff;
    width: 100%;
}

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

.btn-select-service {
    background: #3b82f6;
    color: #ffffff;
    width: 100%;
    margin-top: 10px;
}

.btn-select-service:hover {
    background: #2563eb;
}

/* Split Container - Main Layout Pattern */
.split-container {
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 400px;
}

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.split-left img,
.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-split .split-left {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-image {
    padding: 0;
}

.hero-image img {
    height: 600px;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: #f9fafb;
}

.trust-content {
    max-width: 600px;
}

.trust-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.trust-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4b5563;
}

.stats-inline {
    display: flex;
    gap: 40px;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
}

.stat-label {
    font-size: 0.95rem;
    color: #6b7280;
}

/* Services Showcase */
.services-showcase {
    padding: 80px 0;
    background: #ffffff;
}

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

.section-header.centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-header.centered p {
    font-size: 1.2rem;
    color: #6b7280;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.service-card.featured {
    border: 2px solid #10b981;
}

.service-card.premium {
    border: 2px solid #f59e0b;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f59e0b;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.service-visual {
    height: 200px;
    overflow: hidden;
}

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

.service-details {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-details p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 8px 0;
    color: #4b5563;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-price {
    margin-bottom: 1rem;
}

.service-price .price {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
}

.service-price .price-old {
    font-size: 1.3rem;
    text-decoration: line-through;
    color: #9ca3af;
    margin-right: 10px;
}

/* Testimonial Split */
.testimonial-split {
    padding: 80px 0;
    background: #f3f4f6;
}

.testimonial-content {
    max-width: 600px;
}

.testimonial-content blockquote {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-content blockquote p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-content cite {
    font-style: normal;
    font-weight: 600;
    color: #1f2937;
}

.cta-box {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 50px;
    border-radius: 12px;
    color: #ffffff;
    text-align: center;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #ffffff;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.process-steps-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step {
    flex: 1 1 calc(50% - 15px);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-visual {
    flex-shrink: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
}

/* Benefits Highlight */
.benefits-highlight {
    padding: 80px 0;
    background: #f9fafb;
}

.benefits-content {
    max-width: 600px;
}

.benefits-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

.benefit-item {
    margin-bottom: 2rem;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.benefit-item p {
    color: #4b5563;
    line-height: 1.6;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.faq-split {
    display: flex;
    gap: 40px;
}

.faq-column {
    flex: 1;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1f2937;
}

.faq-item p {
    color: #4b5563;
    line-height: 1.6;
}

/* Order Form Section */
.order-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-split {
    color: #ffffff;
}

.form-info h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.form-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.form-benefit {
    font-size: 1.05rem;
    padding-left: 5px;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #10b981;
}

.form-consent {
    margin-bottom: 20px;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #4b5563;
}

.form-consent input[type="checkbox"] {
    width: auto;
    margin: 4px 0 0 0;
}

.form-consent a {
    color: #3b82f6;
    text-decoration: underline;
}

/* Final CTA */
.final-cta-section {
    padding: 80px 0;
    background: #1f2937;
    color: #ffffff;
    text-align: center;
}

.final-cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.main-footer {
    background: #111827;
    color: #d1d5db;
    padding: 60px 0 20px;
}

.footer-split {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    line-height: 1.8;
    color: #9ca3af;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #10b981;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    background: #10b981;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

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

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    margin-bottom: 60px;
    position: relative;
}

.service-detail-card.featured-service {
    border: 3px solid #f59e0b;
    border-radius: 12px;
    padding: 20px;
}

.service-badge-top {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 10;
}

.service-detail-content {
    max-width: 600px;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-detail-content h4 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    padding: 8px 0;
    color: #4b5563;
    position: relative;
    padding-left: 25px;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.price-tag {
    display: inline-block;
    background: #10b981;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.price-tag-special {
    margin-bottom: 1.5rem;
}

.price-tag-special .old-price {
    font-size: 1.3rem;
    text-decoration: line-through;
    color: #9ca3af;
    margin-right: 10px;
}

.price-tag-special .new-price {
    display: inline-block;
    background: #10b981;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 1.8rem;
    font-weight: 800;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: #f9fafb;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background: #f3f4f6;
    font-weight: 700;
    color: #1f2937;
}

.comparison-table td {
    color: #4b5563;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td strong {
    color: #10b981;
    font-size: 1.1rem;
}

/* About Page */
.about-intro {
    padding: 80px 0;
}

.about-content {
    max-width: 600px;
}

.about-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4b5563;
    line-height: 1.7;
}

.mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.mission-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.mission-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-lead {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.mission-values {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-item {
    flex: 1 1 calc(50% - 15px);
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.value-item p {
    opacity: 0.9;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 60px;
}

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

.team-member {
    flex: 1 1 calc(50% - 15px);
    display: flex;
    gap: 20px;
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
}

.member-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

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

.member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.member-title {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.member-info p {
    color: #6b7280;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: #f3f4f6;
}

.stats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.stat-card {
    flex: 1 1 calc(25% - 22.5px);
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.stat-number-large {
    font-size: 3rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.stat-label-large {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.testimonial-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1rem;
    font-style: italic;
}

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

.testimonial-author strong {
    color: #1f2937;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Approach Section */
.approach-section {
    padding: 80px 0;
    background: #ffffff;
}

.approach-content {
    max-width: 600px;
}

.approach-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.approach-content h4 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.approach-content p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.cta-about {
    padding: 80px 0;
    background: #f3f4f6;
}

.cta-box-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.cta-box-centered h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.cta-box-centered p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-info-section {
    padding: 80px 0;
}

.contact-details {
    max-width: 600px;
}

.contact-details h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1f2937;
}

.contact-item p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #3b82f6;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: #6b7280;
    font-style: italic;
}

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

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

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
}

.map-overlay p {
    color: #1f2937;
    font-weight: 600;
    margin: 0;
}

.contact-reasons {
    padding: 80px 0;
    background: #f9fafb;
}

.contact-reasons h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.reason-card {
    flex: 1 1 calc(50% - 15px);
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.reason-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.reason-card p {
    color: #6b7280;
    line-height: 1.6;
}

.faq-contact {
    padding: 80px 0;
    background: #ffffff;
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.alternative-contact {
    padding: 80px 0;
    background: #f9fafb;
}

.alternative-content {
    max-width: 600px;
}

.alternative-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.alternative-content p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.alternative-list {
    list-style: none;
    margin-bottom: 2rem;
}

.alternative-list li {
    margin-bottom: 1rem;
}

.alternative-list a {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: underline;
}

.alternative-note {
    font-style: italic;
    color: #6b7280;
}

.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 0;
    background: #f9fafb;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.thanks-lead {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.thanks-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.step-item .step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.step-text p {
    color: #6b7280;
}

.selected-service-box {
    background: #f0fdf4;
    border: 2px solid #10b981;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.selected-service-box h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1f2937;
}

.selected-service-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 3rem;
}

.thanks-note {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 20px;
    text-align: left;
    border-radius: 4px;
}

.thanks-note p {
    color: #92400e;
    margin: 0;
}

.thanks-note a {
    color: #b45309;
    text-decoration: underline;
    font-weight: 600;
}

.meanwhile-section {
    padding: 80px 0;
    background: #ffffff;
}

.meanwhile-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.meanwhile-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.meanwhile-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.meanwhile-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.meanwhile-card a {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
}

.meanwhile-card a:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0 100px;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.legal-updated {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #1f2937;
}

.legal-container h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.legal-container p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 1.5rem;
    padding-left: 30px;
}

.legal-container ul {
    list-style: disc;
}

.legal-container ol {
    list-style: decimal;
}

.legal-container li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #3b82f6;
    text-decoration: underline;
}

.legal-container strong {
    color: #1f2937;
    font-weight: 600;
}

.form-wrapper-centered {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-wrapper-centered h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.form-wrapper-centered p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-image img {
        height: 300px;
    }

    .stats-inline {
        flex-direction: column;
        gap: 20px;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .process-steps-split {
        flex-direction: column;
    }

    .process-step {
        flex: 1 1 100%;
    }

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

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

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

    .stat-card {
        flex: 1 1 100%;
    }

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

    .team-member {
        flex: 1 1 100%;
    }

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

    .testimonial-card {
        flex: 1 1 100%;
    }

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

    .reason-card {
        flex: 1 1 100%;
    }

    .mission-values {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }

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

    .meanwhile-card {
        flex: 1 1 100%;
    }

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

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

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

    .sticky-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
}
