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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a5f;
    cursor: pointer;
}

.logo a {
    text-decoration: none;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #4a9eda;
}

.cta-desktop {
    display: none;
}

@media (min-width: 768px) {
    .cta-desktop {
        display: block;
    }
}

.mobile-menu-btn {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: #4b5563;
    padding: 0.5rem;
}

.menu-toggle:hover {
    color: #1e3a5f;
}

.icon {
    width: 24px;
    height: 24px;
}

/* Mobile Navigation */
.nav-mobile {
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu-content {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem;
    color: #4b5563;
    text-decoration: none;
    border-radius: 0.375rem;
}

.mobile-nav-link:hover {
    background-color: #f9fafb;
}

.mobile-cta {
    margin-top: 0.5rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #4a9eda;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #3a8ec9;
}

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

.btn-secondary:hover {
    background-color: #4a9eda;
    color: #ffffff;
}

.btn-secondary-alt {
    background-color: #ffffff;
    color: #4a9eda;
    border: 2px solid #4a9eda;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary-alt:hover {
    background-color: #4a9eda;
    color: #ffffff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-primary-gradient {
    background: linear-gradient(to right, #4a9eda, #3a8ec9);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary-gradient:hover {
    background: linear-gradient(to right, #3a8ec9, #2a7eb9);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Main Content */
.main-content {
    padding-top: 64px;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom right, #f8fafc, #ffffff);
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .hero {
        padding: 6rem 0;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(74, 158, 218, 0.1);
    border-radius: 9999px;
    width: fit-content;
}

.badge span {
    color: #1e3a5f;
    font-weight: 700;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e3a5f;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

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

@media (min-width: 768px) {
    .trust-item {
        text-align: left;
    }
}

.trust-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: #4a9eda;
}

.trust-label {
    font-size: 0.875rem;
    color: #4b5563;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .hero-image img {
        height: 600px;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

.about-image-decor {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 12rem;
    height: 12rem;
    background-color: rgba(74, 158, 218, 0.1);
    border-radius: 1rem;
    z-index: -1;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.75;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-top: 1.5rem;
}

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

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #4a9eda;
}

.stat-label {
    color: #4b5563;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.mission-content {
    max-width: 64rem;
    margin: 0 auto;
}

.mission-text {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-card {
    background: linear-gradient(to bottom right, #f8fafc, #ffffff);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 0.75rem;
}

.value-text {
    color: #374151;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    display: block;
    color: inherit;
}

.service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

.service-image {
    height: 14rem;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-icon-wrapper {
    background-color: #4a9eda;
    padding: 1rem;
    border-radius: 0.75rem;
    display: inline-flex;
    margin-bottom: 1rem;
}

.service-icon {
    color: #ffffff;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 0.75rem;
}

.service-description {
    color: #4b5563;
    line-height: 1.75;
}

.service-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    color: #4a9eda;
    font-weight: 600;
    transition: all 0.3s;
}

.service-card:hover .service-cta {
    gap: 0.75rem;
    color: #3a8ec9;
}

.service-cta svg {
    transition: transform 0.3s;
}

.service-card:hover .service-cta svg {
    transform: translateX(4px);
}

.service-cta-text {
    font-size: 1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #f8fafc, #ffffff);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.pricing-card:hover {
    transform: scale(1.05);
}

.pricing-card.popular {
    border: 4px solid #4a9eda;
    position: relative;
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .pricing-card.popular {
        transform: scale(1.05);
    }
}

.popular-badge {
    background: linear-gradient(to right, #4a9eda, #3a8ec9);
    color: #ffffff;
    text-align: center;
    padding: 0.75rem;
    font-weight: 700;
}

.pricing-content {
    padding: 2rem;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.pricing-price-wrapper {
    margin-bottom: 2rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a5f;
}

.pricing-unit {
    color: #4b5563;
    font-size: 1.125rem;
}

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

.pricing-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.feature-check {
    background-color: #4a9eda;
    border-radius: 9999px;
    padding: 0.5rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    color: #ffffff;
    margin-top: 0.125rem;
}

.pricing-feature span {
    color: #374151;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
}

.contact-description {
    color: #4b5563;
    margin-bottom: 2rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(to bottom right, #f8fafc, #ffffff);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-icon-wrapper {
    background-color: #4a9eda;
    padding: 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon {
    color: #ffffff;
}

.contact-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #4b5563;
    font-size: 1.125rem;
}

.contact-hours {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(to bottom right, #f8fafc, #ffffff);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-label {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: transparent;
    box-shadow: 0 0 0 2px #4a9eda;
}

.form-textarea {
    resize: none;
}

/* Footer */
.footer {
    background-color: #1e3a5f;
    color: #ffffff;
    padding: 3rem 0;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #f8fafc, #ffffff);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.feature-icon-wrapper {
    background-color: #4a9eda;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    color: #ffffff;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a5f;
}

.feature-description {
    color: #4b5563;
    line-height: 1.75;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background-color: #1e3a5f;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: white;
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(80px);
}

.process-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: white;
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(80px);
}

.section-header-white {
    position: relative;
    z-index: 10;
}

.badge-blue {
    background-color: #4a9eda;
}

.badge-blue span {
    color: #ffffff;
}

.section-title-white {
    color: #ffffff !important;
}

.section-subtitle-white {
    color: #e0e7ff !important;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-card {
    position: relative;
}

.process-content {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.process-content:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.process-icon-wrapper {
    background-color: #4a9eda;
    width: 6rem;
    height: 6rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.process-icon {
    color: #ffffff;
}

.process-number {
    position: absolute;
    top: -0.75rem;
    right: -4rem;
    width: 3rem;
    height: 3rem;
    background-color: #ffffff;
    color: #1e3a5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: none;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 0.75rem;
    text-align: center;
}

.process-description {
    color: #e0e7ff !important;
    text-align: center;
    line-height: 1.75;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-list li {
    color: #d1d5db;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #4b5563;
    padding-top: 2rem;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-bottom-link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-bottom-link:hover {
    color: #ffffff;
}

/* Legal Pages Styles */
.legal-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.legal-container {
    max-width: 56rem;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .legal-title {
        font-size: 3rem;
    }
}

.legal-updated {
    color: #6b7280;
    font-size: 0.875rem;
    font-style: italic;
}

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

.legal-intro {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(to bottom right, #f8fafc, #ffffff);
    border-left: 4px solid #4a9eda;
    border-radius: 0.5rem;
}

.legal-section-block {
    margin-bottom: 2.5rem;
}

.legal-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-subheading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

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

.legal-list {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #4b5563;
}

.legal-list li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-list strong {
    color: #1e3a5f;
    font-weight: 600;
}

.legal-link {
    color: #4a9eda;
    text-decoration: underline;
    transition: color 0.3s;
}

.legal-link:hover {
    color: #3a8ec9;
}

/* Service Detail Pages */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumb-link {
    color: #4a9eda;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-link:hover {
    color: #3a8ec9;
}

.breadcrumb-separator {
    color: #6b7280;
}

.breadcrumb-current {
    color: #374151;
}

.service-hero {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #f8fafc, #ffffff);
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .service-hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a5f;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .service-hero-title {
        font-size: 3.5rem;
    }
}

.service-hero-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.75;
}

.service-hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
}

.service-hero-feature svg {
    color: #4a9eda;
    flex-shrink: 0;
}

.service-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.service-hero-image {
    position: relative;
}

.service-hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .service-hero-image img {
        height: 550px;
    }
}

.service-details-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.service-details-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .service-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-detail-card {
    background: linear-gradient(to bottom right, #f8fafc, #ffffff);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-detail-icon {
    background-color: #4a9eda;
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.service-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.service-detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-detail-list li {
    display: flex;
    align-items: flex-start;
    color: #374151;
    line-height: 1.6;
}

.service-detail-list li::before {
    content: "✓";
    color: #4a9eda;
    font-weight: 700;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.service-cta-section {
    padding: 5rem 0;
    background: linear-gradient(to right, #1e3a5f, #2a4a6f);
}

.service-cta-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.service-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .service-cta-title {
        font-size: 3rem;
    }
}

.service-cta-description {
    font-size: 1.25rem;
    color: #e0e7ff;
    margin-bottom: 2rem;
}

.service-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.related-services-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.related-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .related-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .related-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.related-service-card {
    background: linear-gradient(to bottom right, #f8fafc, #ffffff);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s;
}

.related-service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.related-service-icon {
    background-color: #4a9eda;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.related-service-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.related-service-description {
    font-size: 0.875rem;
    color: #4b5563;
}

/* Services Preview Section */
.services-preview-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.services-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-preview-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    display: block;
    color: inherit;
}

.service-preview-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

.service-preview-image {
    height: 12rem;
    overflow: hidden;
}

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

.service-preview-card:hover .service-preview-image img {
    transform: scale(1.1);
}

.service-preview-content {
    padding: 1.5rem;
}

.service-preview-icon-wrapper {
    background-color: #4a9eda;
    padding: 0.75rem;
    border-radius: 0.75rem;
    display: inline-flex;
    margin-bottom: 1rem;
}

.service-preview-icon {
    color: #ffffff;
}

.service-preview-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 0.75rem;
}

.service-preview-description {
    color: #4b5563;
    line-height: 1.75;
}

.services-preview-cta {
    text-align: center;
    margin-top: 3rem;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    color: #4b5563;
    font-size: 1rem;
}

.pricing-note-link {
    color: #4a9eda;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.pricing-note-link:hover {
    color: #3a8ec9;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #f8fafc, #ffffff);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    color: #374151;
    font-size: 1rem;
    line-height: 1.75;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #4a9eda, #3a8ec9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 700;
    color: #1e3a5f;
    font-size: 1rem;
}

.testimonial-location {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(to right, #1e3a5f, #2a4a6f);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -10rem;
    left: -10rem;
    width: 30rem;
    height: 30rem;
    background: white;
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(80px);
}

.final-cta-section::after {
    content: '';
    position: absolute;
    bottom: -10rem;
    right: -10rem;
    width: 30rem;
    height: 30rem;
    background: white;
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(80px);
}

.final-cta-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .final-cta-title {
        font-size: 3rem;
    }
}

.final-cta-description {
    font-size: 1.25rem;
    color: #e0e7ff;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 48rem;
    max-height: 90vh;
    overflow-y: auto;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-content {
    padding: 2rem;
}

@media (min-width: 768px) {
    .modal-content {
        padding: 2.5rem;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e3a5f;
}

@media (min-width: 768px) {
    .modal-title {
        font-size: 2rem;
    }
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background-color: #f3f4f6;
    color: #1e3a5f;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.consent-group {
    background-color: #f8fafc;
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.consent-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    cursor: pointer;
    accent-color: #4a9eda;
}

.consent-text {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.6;
}

.consent-link {
    color: #4a9eda;
    text-decoration: underline;
    transition: color 0.3s;
}

.consent-link:hover {
    color: #3a8ec9;
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.modal-footer .btn {
    flex: 1;
    min-width: 140px;
}

@media (min-width: 640px) {
    .modal-footer .btn {
        flex: 0;
    }
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(to bottom right, #4a9eda, #3a8ec9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ffffff;
}

.success-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.success-text {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.75;
}