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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

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

.container-medium {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

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

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

.nav-links a:hover {
    color: #2563eb;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

.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-actions {
    display: flex;
    gap: 10px;
}

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

.btn-cookie-accept {
    background-color: #22c55e;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #16a34a;
}

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

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

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #e0e7ff;
    margin-bottom: 32px;
}

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

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

/* Buttons */
.btn-primary,
.btn-primary-large,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #ffffff;
    color: #1e40af;
}

.btn-primary:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary-large {
    background-color: #2563eb;
    color: #ffffff;
    padding: 18px 48px;
    font-size: 1.125rem;
}

.btn-primary-large:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

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

.btn-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-submit {
    background-color: #2563eb;
    color: #ffffff;
    width: 100%;
}

.btn-submit:hover {
    background-color: #1d4ed8;
}

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

.trust-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

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

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 8px;
}

.trust-label {
    display: block;
    font-size: 0.95rem;
    color: #6b7280;
}

/* Split Container (Generic) */
.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.split-left img,
.split-right img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Problem Section */
.problem-section {
    background-color: #ffffff;
}

.problem-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.problem-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: #4b5563;
}

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.highlight-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e40af;
    margin-top: 30px;
}

/* Insight Block */
.insight-block {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 20px;
    text-align: center;
}

.center-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.insight-block .center-heading {
    color: #ffffff;
}

.center-text {
    font-size: 1.25rem;
    line-height: 1.8;
}

.insight-block .center-text {
    color: #cbd5e1;
    max-width: 900px;
    margin: 0 auto;
}

/* Services Showcase */
.services-showcase {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #1f2937;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(50% - 20px);
    min-width: 320px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

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

.service-details {
    padding: 30px;
}

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

.service-details p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding-top: 20px;
    border-top: 2px solid #e5e7eb;
}

.price-label {
    font-size: 0.9rem;
    color: #6b7280;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #2563eb;
}

/* Calculation Section */
.calculation-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.calc-example {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.calc-row:last-child {
    border-bottom: none;
}

.calc-row.highlight {
    background-color: #dbeafe;
    padding: 16px 12px;
    margin: 10px -12px;
    border-radius: 6px;
}

.calc-row.success {
    background-color: #d1fae5;
    padding: 16px 12px;
    margin: 10px -12px;
    border-radius: 6px;
}

.note-text {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #6b7280;
    font-style: italic;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 12px;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #6b7280;
    font-size: 0.95rem;
}

/* Process Steps */
.process-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    flex: 1 1 250px;
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #2563eb;
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.process-step p {
    color: #6b7280;
    line-height: 1.6;
}

/* Forms */
.cta-form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.cta-form-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
}

.form-intro {
    text-align: center;
    color: #dbeafe;
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.main-form,
.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

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

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

.faq-list {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* Final CTA */
.final-cta,
.cta-section-simple,
.cta-services {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.final-cta h2,
.cta-section-simple h2,
.cta-services h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.final-cta p,
.cta-section-simple p,
.cta-services p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #9ca3af;
    padding: 60px 20px 30px;
}

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

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

.footer-col h4 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 12px;
}

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #374151;
    text-align: center;
    color: #6b7280;
}

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

.sticky-btn {
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
}

/* Page Hero */
.page-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #dbeafe;
}

/* About Page Styles */
.about-story {
    padding: 80px 20px;
    background-color: #ffffff;
}

.values-section {
    padding: 80px 20px;
    background-color: #f9fafb;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-width: 280px;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 12px;
}

.value-card p {
    color: #6b7280;
    line-height: 1.7;
}

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

.team-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
}

.expertise-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.expertise-item {
    flex: 1 1 calc(50% - 15px);
    padding: 30px;
    background-color: #f9fafb;
    border-radius: 12px;
    min-width: 280px;
}

.expertise-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.expertise-item p {
    color: #6b7280;
}

/* Achievements */
.achievements-section {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.stats-large {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
}

.stat-large {
    flex: 1 1 250px;
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #6b7280;
}

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

.check-list {
    list-style: none;
    margin: 30px 0;
}

.check-list li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 12px;
    color: #4b5563;
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
    font-size: 1.25rem;
}

/* Certifications */
.certifications-section {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.cert-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.cert-item {
    flex: 1 1 calc(50% - 15px);
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-width: 280px;
}

.cert-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.cert-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Timeline */
.timeline-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.timeline {
    margin-top: 40px;
    position: relative;
}

.timeline:before {
    content: "";
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e5e7eb;
}

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

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 1.125rem;
    font-weight: 700;
    color: #2563eb;
}

.timeline-content {
    flex: 1;
    padding: 20px;
    background-color: #f9fafb;
    border-radius: 8px;
    position: relative;
}

.timeline-content:before {
    content: "";
    position: absolute;
    left: -15px;
    top: 25px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #2563eb;
    border: 3px solid #ffffff;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

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

/* Services Page */
.services-detailed {
    padding: 80px 20px;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 60px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background-color: #f9fafb;
    border-bottom: 2px solid #e5e7eb;
}

.service-header-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.service-tagline {
    color: #6b7280;
    font-size: 1rem;
}

.service-price-box {
    text-align: right;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
}

.service-detail-content {
    display: flex;
    gap: 40px;
    padding: 40px;
}

.service-description {
    flex: 2;
}

.service-description h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 30px;
    margin-bottom: 12px;
}

.service-description ul {
    margin-left: 20px;
    color: #4b5563;
    line-height: 1.8;
}

.service-description p {
    margin-bottom: 16px;
    color: #4b5563;
    line-height: 1.8;
}

.service-image-box {
    flex: 1;
}

.service-image-box img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Packages */
.packages-section {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.packages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    flex: 1 1 300px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.package-card.featured {
    border: 3px solid #2563eb;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2563eb;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.package-desc {
    color: #6b7280;
    margin-bottom: 20px;
}

.package-includes {
    list-style: none;
    margin-bottom: 30px;
}

.package-includes li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #4b5563;
}

.package-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.package-pricing {
    border-top: 2px solid #e5e7eb;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.package-subsidy {
    font-size: 0.95rem;
    color: #22c55e;
    font-weight: 600;
}

.package-final {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
}

/* Process Simple */
.process-simple {
    padding: 80px 20px;
    background-color: #ffffff;
}

.steps-simple {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.step-simple {
    flex: 1 1 200px;
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #dbeafe;
    color: #1e40af;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.step-simple h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.step-simple p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Contact Page */
.contact-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-split {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-side {
    flex: 1;
}

.contact-form-side {
    flex: 1;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.contact-detail {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 12px;
}

.contact-detail a {
    color: #2563eb;
    font-weight: 600;
}

.regions-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.regions-list li {
    color: #6b7280;
    padding-left: 15px;
    position: relative;
}

.regions-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
}

.form-container-white {
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 12px;
}

.form-container-white h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.form-container-white p {
    color: #6b7280;
    margin-bottom: 30px;
}

/* Map Section */
.map-section {
    padding: 60px 20px;
    background-color: #f9fafb;
}

.map-placeholder {
    background-color: #e5e7eb;
    padding: 80px 40px;
    text-align: center;
    border-radius: 12px;
    margin-top: 30px;
}

.map-placeholder p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 10px;
}

.map-note {
    font-size: 0.95rem;
    color: #6b7280;
}

/* FAQ Contact */
.faq-contact {
    padding: 80px 20px;
    background-color: #ffffff;
}

/* Thanks Page */
.thanks-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    text-align: center;
}

.success-icon {
    margin: 0 auto 30px;
}

.thanks-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 1.25rem;
    color: #d1fae5;
}

.thanks-details {
    padding: 80px 20px;
    background-color: #ffffff;
}

.thanks-info-box {
    max-width: 900px;
    margin: 0 auto 40px;
}

.thanks-info-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: #dbeafe;
    color: #1e40af;
    font-size: 1.5rem;
    font-weight: 800;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

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

.thanks-service-info {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f9fafb;
    border-radius: 12px;
    text-align: center;
}

.thanks-service-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.thanks-resources {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.resource-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.resource-card {
    flex: 1 1 300px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.resource-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.resource-card p {
    color: #6b7280;
    margin-bottom: 20px;
}

.thanks-guarantee {
    padding: 80px 20px;
    background-color: #ffffff;
}

.thanks-guarantee h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.thanks-guarantee p {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.8;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
}

.legal-intro {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 20px;
}

.legal-date {
    font-size: 0.95rem;
    color: #9ca3af;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #374151;
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-page p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
    margin-left: 30px;
    margin-bottom: 20px;
    color: #4b5563;
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 8px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.legal-table thead {
    background-color: #f9fafb;
}

.legal-table th {
    padding: 12px;
    text-align: left;
    font-weight: 700;
    color: #1f2937;
    border-bottom: 2px solid #e5e7eb;
}

.legal-table td {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

.legal-table tbody tr:hover {
    background-color: #f9fafb;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .split-container {
        gap: 40px;
        padding: 60px 20px;
    }

    .service-detail-content {
        flex-direction: column;
    }

    .timeline:before {
        left: 70px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 15px;
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .hero-content {
        padding: 40px 20px;
    }

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

    .hero-lead {
        font-size: 1.125rem;
    }

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

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

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

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

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

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

    .sticky-btn {
        display: block;
        width: 100%;
        text-align: center;
    }

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

    .section-title,
    .center-heading {
        font-size: 1.75rem;
    }

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

    .service-detail-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .service-price-box {
        text-align: center;
    }

    .timeline:before {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }

    .timeline-content:before {
        display: none;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .packages-grid {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .btn-primary,
    .btn-primary-large {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .trust-number {
        font-size: 2rem;
    }

    .service-details {
        padding: 20px;
    }

    .main-form,
    .contact-form {
        padding: 25px;
    }

    .form-container-white {
        padding: 25px;
    }
}
