body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

/* Header Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 28px;
    font-weight: bold;
    color: #20B2AA !important;
    font-family: 'Brush Script MT', cursive;
}

.navbar-nav .nav-link {
    color: #666 !important;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #20B2AA !important;
}

.btn-find-service {
    background-color: transparent;
    color: #20B2AA;
    border: 2px solid #20B2AA;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.btn-find-service:hover {
    background-color: #20B2AA;
    color: white;
}

.btn-join-provider {
    background-color: #20B2AA;
    color: white;
    border: 2px solid #20B2AA;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-join-provider:hover {
    background-color: #1a9999;
    border-color: #1a9999;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(3, 3, 3, 0.479), rgba(0, 0, 0, 0.562)),
        url("../img/bg-elgiria.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: white;
    position: relative;
    padding: 180px 0px 90px 0px;
}

.hero-content {
    padding: 0 0px;
}

.hero-logo {
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: 'Brush Script MT', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    margin-bottom: 30px;
}

.btn-need-service {
    background-color: #20B2AA;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    margin: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
}

.btn-need-service:hover {
    background-color: #1a9999;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
}

.btn-give-service {
    background-color: white;
    color: #20B2AA;
    border: 2px solid white;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    margin: 10px;
    transition: all 0.3s ease;
}

.btn-give-service:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.trust-item i {
    font-size: 20px;
    color: #20B2AA;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 150px 10px 70px 10px;
    }

    .hero-logo {
        font-size: 50px;
        margin-bottom: 10px;
    }

    .hero-buttons {
        display: flex;
        align-items: center;
    }

    .btn-need-service,
    .btn-give-service {
        display: block;
        width: 100%;
        padding: 8px 25px;
        font-size: 14px;
        margin: 5px 3px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .trust-indicators {
        gap: 30px;
    }

    .trust-item {
        font-size: 14px;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
    }
}

@media (max-width: 576px) {
    .hero-logo {
        font-size: 40px;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }

    .btn-find-service,
    .btn-join-provider {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}

/* ===========================Section -2=========================== */
.section-wrap {
    background-color: #f9fafb;
    padding: 60px 0px;
}

.lead-wrap {
    text-align: center;
    /* text-center */
    margin-bottom: 4rem;
    /* mb-16 */
}

.lead-wrap h1 {
    font-size: 2.25rem;
    /* text-4xl */
    font-weight: 600;
    /* font-semibold */
    color: #1f2937;
    /* text-gray-800 */
    margin-bottom: 0.75rem;
    /* mb-3 */
    line-height: 1.2;
    /* heading rhythm */
}

.lead-wrap p {
    font-size: 1.125rem;
    /* text-lg */
    color: #4b5563;
    /* text-gray-600 */
    margin: 0;
    /* reset */
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card-section-2 {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 2rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 200ms ease;
}

.card-section-2:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon-circle-section-2 {
    width: 3rem;
    height: 3rem;
    background-color: #d1fae5;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-circle-section-2 i {
    font-size: 1.25rem;
    color: #374151;
    line-height: 1;
}

.card-section-2 .card-headeing-sec-2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.card-section-2 p {
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* ===========================Section -2 End =========================== */
/* ===========================Section -3 Start =========================== */
.how-it-works-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-header-section-3 {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-section-3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
}

.section-subtitle-section-3 {
    font-size: 1.125rem;
    color: #9CA3AF;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.step-item-section-3 {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.step-icon-section-3-container {
    position: relative;
    display: inline-block;
    margin-bottom: 32px;
}

.step-icon-section-3 {
    width: 80px;
    height: 80px;
    background-color: #14B8A6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.step-icon-section-3 i {
    font-size: 2rem;
    color: white;
}

.step-number-section-3 {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background-color: #14B8A6;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-title-section-3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.4;
}

.step-description-section-3 {
    font-size: 1rem;
    color: #9CA3AF;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .how-it-works-section {
        padding: 60px 0;
    }

    .section-title-section-3 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 50px 0;
    }

    .section-title-section-3 {
        font-size: 2rem;
    }

    .section-subtitle-section-3 {
        font-size: 1rem;
        padding: 0 20px;
    }

    .step-item-section-3 {
        margin-bottom: 50px;
    }

    .step-item-section-3:last-child {
        margin-bottom: 0;
    }

    .step-description-section-3 {
        max-width: 100%;
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .section-title-section-3 {
        font-size: 1.75rem;
    }

    .step-icon-section-3 {
        width: 70px;
        height: 70px;
    }

    .step-icon-section-3 i {
        font-size: 1.75rem;
    }

    .step-number-section-3 {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .step-title-section-3 {
        font-size: 1.125rem;
    }

    .step-description-section-3 {
        font-size: 0.9375rem;
    }
}

/* ===========================Section -3 End =========================== */
/* ===========================Section -4 Start =========================== */
.pricing-container {
    background-color: #f8f9fa;
    padding: 60px 0px;
}

.header-section-section-4 {
    text-align: center;
    margin-bottom: 50px;
}

.main-title-section-4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.subtitle-section-4 {
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0;
}

.pricing-card-section-4 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 35px 25px;
    flex: 1;
    min-width: 280px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card-section-4:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card-section-4.featured {
    border-color: #10b981;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.price-list-section-4-section {
    text-align: center;
    margin-bottom: 30px;
}

.price-list-section-4 {
    font-size: 3rem;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
}

.price-list-section-4-period {
    font-size: 1rem;
    color: #6b7280;
    margin-left: 5px;
}

.features-list-section-4 {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.features-list-section-4 li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4b5563;
}

.check-icon-section-4 {
    color: #10b981;
    margin-right: 12px;
    font-size: 1.1rem;
}

.join-btn-section-4 {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.join-btn-section-4.primary {
    background: #10b981;
    color: white;
}

.join-btn-section-4.primary:hover {
    background: #059669;
}

.join-btn-section-4.secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.join-btn-section-4.secondary:hover {
    background: #e5e7eb;
}

@media (max-width: 992px) {

    .pricing-card-section-4 {
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .main-title-section-4 {
        font-size: 2rem;
    }

    .pricing-container {
        padding: 40px 0px;
    }

    .pricing-card-section-4 {
        padding: 30px 20px;
    }
}

/* ===========================Section -4 End =========================== */
/* ===========================Section -5 Start =========================== */
.heavy-services-container {
    color: #333;
    background-color: #ffffff;
    padding: 80px 0px;
}

.main-title-section-5 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.subtitle-section-5 {
    font-size: 1.1rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.service-item {
    text-align: center;
    flex: 0 0 auto;
}

.service-icon-section-5 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ccfbf1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: #0b999b;
}

.service-label-section-5 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
}

.info-card-section-5s-row {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.info-card-section-5 {
    background-color: #f0f8f4;
    border-radius: 12px;
    padding: 35px;
    flex: 1;
    max-width: 420px;
}

.card-title-section-5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.card-content-section-5 {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.card-content-section-5 p {
    margin-bottom: 12px;
}

.card-content-section-5 p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .services-row {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .heavy-services-container {
        padding: 60px 0px;
    }

    .main-title-section-5 {
        font-size: 2rem;
    }

    .services-row {
        gap: 30px;
    }

    .service-icon-section-5 {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .info-card-section-5s-row {
        flex-direction: column;
        gap: 25px;
    }

    .info-card-section-5 {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .heavy-services-container {
        padding: 40px 0px;
    }

    .main-title-section-5 {
        font-size: 1.8rem;
    }

    .subtitle-section-5 {
        font-size: 1rem;
        margin-bottom: 50px;
    }

    .services-row {
        gap: 25px;
        margin-bottom: 60px;
    }

    .service-icon-section-5 {
        width: 65px;
        height: 65px;
        font-size: 1.4rem;
    }

    .service-label-section-5 {
        font-size: 0.85rem;
    }

    .info-card-section-5 {
        padding: 25px 20px;
    }

    .card-title-section-5 {
        font-size: 1.2rem;
    }
}

/* ===========================Section -5 End =========================== */
/* ===========================Section -6 Start =========================== */
.main-container-section-6 {
    background-color: #f8f9fa;
    color: #333;
    padding: 60px 0px;
}

.header-section-section-6 {
    text-align: center;
    margin-bottom: 60px;
}

.main-title-section-6 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.subtitle-section-6 {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.features-section-section-6 {
    margin-bottom: 80px;
}

.feature-card-section-6 {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: none;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card-section-6:hover {
    transform: translateY(-5px);
}

.feature-icon-section-6 {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 24px;
}

.stripe-icon-section-6 {
    background-color: #e3f2fd;
    color: #1976d2;
}

.split-icon-section-6 {
    background-color: #e8f5e8;
    color: #2e7d32;
}

.feature-title-section-6 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
}

.feature-list-section-6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-section-6 li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    color: #555;
    font-size: 0.95rem;
}

.feature-list-section-6 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 16px;
}

.coming-soon {
    color: #6c757d;
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 15px;
}

.security-section-section-6 {
    text-align: center;
    background: white;
    border-radius: 12px;
    padding: 50px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.security-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
}

.security-description {
    color: #6c757d;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.security-subtitle-section-6 {
    color: #6c757d;
    margin-bottom: 40px;
}

.security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
}

.badge-icon-section-6 {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ssl-icon {
    color: #28a745;
}

.bank-icon {
    color: #007bff;
}

.pci-icon {
    color: #17a2b8;
}

@media (max-width: 768px) {
    .main-title-section-6 {
        font-size: 2rem;
    }

    .subtitle-section-6 {
        font-size: 1rem;
    }

    .feature-card-section-6 {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .security-badges {
        flex-direction: column;
        gap: 20px;
    }

    .main-container-section-6 {
        padding: 40px 0px;
    }

    .features-section-section-6 .row {
        margin: 0;
    }

    .features-section-section-6 .col-lg-6 {
        padding: 0 0 20px 0;
    }
}

@media (max-width: 576px) {
    .main-container-section-6 {
        padding: 30px 10px;
    }

    .header-section-section-6 {
        margin-bottom: 40px;
    }

    .features-section-section-6 {
        margin-bottom: 60px;
    }

    .security-section-section-6 {
        padding: 40px 20px;
    }
}

/* ===========================Section -6 End =========================== */
/* ===========================Section -7 Start =========================== */
.testimonials-section-section-7 {
    color: #333;
    padding: 80px 0;
    background-color: #fff;
}

.section-title-section-7 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle-section-7 {
    font-size: 1.1rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

.testimonial-card-section-7 {
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 1px solid #f0f0f0;
}

.testimonial-header-section-7 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-avatar-section-7 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-info-section-7 h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #2c3e50;
}

.testimonial-info-section-7 p {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

.star-rating-section-7 {
    margin-bottom: 15px;
}

.star-rating-section-7 i {
    color: #ffc107;
    font-size: 0.875rem;
    margin-right: 2px;
}

.testimonial-text-section-7 {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

.trust-section-section-7 {
    background-color: #f0f9f8;
    padding: 40px 0 20px 0px;
}

.trust-title-section-7 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 10px;
}

.trust-feature-section-7 {
    text-align: center;
    padding: 20px 15px;
}

.trust-icon-section-7 {
    width: 50px;
    height: 50px;
    background-color: #20c997;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.trust-icon-section-7 i {
    font-size: 1rem;
    color: white;
}

.trust-feature-section-7 h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title-section-7 {
        font-size: 2rem;
    }

    .section-subtitle-section-7 {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .testimonials-section-section-7 {
        padding: 60px 0;
    }

    .testimonial-card-section-7 {
        margin-bottom: 30px;
    }

    .trust-section-section-7 {
        padding: 50px 0;
    }

    .trust-title-section-7 {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }

    .trust-feature-section-7 {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .section-title-section-7 {
        font-size: 1.75rem;
    }

    .testimonial-card-section-7 {
        padding: 25px 20px;
    }

    .testimonial-header-section-7 {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-avatar-section-7 {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* ===========================Section -7 End =========================== */
/* ===========================Section -8 Start =========================== */
.main-container-section-8 {
    padding: 60px 0px;
    background-color: #f8f9fa;
}

.header-section-section-8 {
    text-align: center;
    margin-bottom: 60px;
}

.main-title-section-8 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.subtitle-section-8 {
    font-size: 1.125rem;
    color: #718096;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.cards-row-section-8 {
    margin-bottom: 60px;
}

.disclaimer-card,
.responsibilities-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.disclaimer-card:hover,
.responsibilities-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon-section-8 {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.blue-icon {
    background-color: #ebf8ff;
    color: #3182ce;
}

.red-icon {
    background-color: #fed7d7;
    color: #e53e3e;
}

.card-title-section-8 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.card-content-section-8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-content-section-8 li {
    margin-bottom: 16px;
    color: #4a5568;
    font-size: 1rem;
    position: relative;
    padding-left: 24px;
    line-height: 1.6;
}

.card-content-section-8 li:last-child {
    margin-bottom: 0;
}

.card-content-section-8 li:before {
    content: "•";
    color: #a0aec0;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.policies-section {
    margin-bottom: 50px;
}

.policies-title {
    font-size: 1.625rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 32px;
    letter-spacing: -0.025em;
}

.policy-item {
    background: white;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.policy-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.policy-item h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
    letter-spacing: -0.025em;
}

.policy-item p {
    color: #4a5568;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.important-notice {
    background-color: #fffbeb;
    border: 1px solid #f6e05e;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.notice-icon {
    color: #d69e2e;
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.notice-content {
    flex: 1;
}

.notice-title {
    font-weight: 600;
    color: #d69e2e;
    margin-bottom: 8px;
    font-size: 1.0625rem;
}

.notice-text {
    color: #d69e2e;
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .main-container-section-8 {
        padding: 40px 0px;
    }

    .main-title-section-8 {
        font-size: 2.25rem;
    }

    .cards-row-section-8 {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .main-container-section-8 {
        padding: 30px 0px;
    }

    .main-title-section-8 {
        font-size: 2rem;
    }

    .subtitle-section-8 {
        font-size: 1rem;
    }

    .disclaimer-card,
    .responsibilities-card {
        padding: 30px;
        margin-bottom: 24px;
    }

    .card-title-section-8 {
        font-size: 1.25rem;
    }

    .policies-title {
        font-size: 1.5rem;
    }

    .policy-item {
        padding: 24px;
    }

    .important-notice {
        padding: 20px;
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .main-container-section-8 {
        padding: 20px 0px;
    }

    .main-title-section-8 {
        font-size: 1.875rem;
    }

    .disclaimer-card,
    .responsibilities-card {
        padding: 24px;
    }

    .card-title-section-8 {
        font-size: 1.1875rem;
    }

    .policies-title {
        font-size: 1.375rem;
    }

    .policy-item {
        padding: 20px;
    }

    .important-notice {
        padding: 16px;
    }
}

/* ===========================Section -8 End =========================== */
/* ===========================Section -9 sTART =========================== */
.hero-section-footer {
    background: #0d9488;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0px;
}

.hero-content-footer .heading-bottom-cta {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}

.hero-content-footer p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-buttons-footer {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-find-service-bottom {
    background-color: white;
    color: #14b8a6;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-find-service-bottom:hover {
    background-color: #f8fafc;
    color: #14b8a6;
    transform: translateY(-1px);
}

.btn-become-provider-bottom {
    background-color: #2dd4bf;
    color: white;
    border: 2px solid white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
#findservice .modal-content .modal-header{
    border-bottom: 0px;
}
#findservice .modal-content .modal-header .btn-close{
    opacity: 1;
}
#findservice .modal-content{
    padding: 10px 15px;
}
#findservice .modal-content .form-group{
    margin-bottom: 15px;
}
#findservice .modal-content .form-group .form-label{
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 6px;
}
#findserviceLabel{
    color: #000;
    font-weight: 600;
}
#joinas .modal-content .modal-header{
    border-bottom: 0px;
}
#joinas .modal-content .modal-header .btn-close{
    opacity: 1;
}
#joinas .modal-content{
    padding: 10px 15px;
}
#joinas .modal-content .form-group{
    margin-bottom: 15px;
}
#joinas .modal-content .form-group .form-label{
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 6px;
}
.fad{
    text-decoration: line-through;
    font-size: 16px;
}
#joinas{
    color: #000;
    font-weight: 600;
}

.btn-become-provider-bottom:hover {
    background-color: white;
    color: #14b8a6;
    transform: translateY(-1px);
}

.footer-section {
    background-color: #111827;
    color: #cbd5e1;
    padding: 60px 0 40px 0;
}

.footer-brand {
    margin-bottom: 24px;
}

.footer-logo {
    color: #2dd4bf;
    font-size: 1.8rem;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: #cbd5e1;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #2dd4bf;
}

.footer-column h5 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #2dd4bf;
}

@media (max-width: 768px) {
    .hero-content-footer .heading-bottom-cta {
        font-size: 2rem;
    }

    .hero-content-footer p {
        font-size: 1rem;
    }

    .hero-buttons-footer {
        flex-direction: column;
        width: 100%;
    }

    .btn-find-service-bottom,
    .btn-become-provider-bottom {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .footer-section {
        padding: 40px 0 30px 0;
    }

    .footer-column {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-content-footer .heading-bottom-cta {
        font-size: 1.75rem;
    }

    .hero-section-footer {
        padding: 60px 0px;
    }
}

/* ===========================Section -9 End =========================== */