body {
        font-family: Arial, sans-serif;
        background-color: #ffffff;
        color: #333333;
        line-height: 1.6;
        margin: 0;
        padding: 0px;
    }
    .container {
        max-width: 800px;
        margin: 0 auto;
    }
    .profile {
        text-align: center;
        margin-bottom: 30px;
    }
    .profile-img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
    }
    h1 {
        font-size: 28px;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    .description {
        font-size: 16px;
        color: #666666;
        margin-bottom: 30px;
        text-align: center;
    }
    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    .card {
        background-color: #F5F8FE;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .card-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        color: #777;
        cursor: pointer;
    }
    .card-title i {
        margin-right: 10px;
        font-size: 20px;
        color: #777;
    }
    .card-question {
        font-size: 14px;
        font-weight: 100;
        color: #999;
        margin-bottom: 10px;
        cursor: pointer;
    }
    .card-question i {
        margin-right: 5px;
        color: #999999;
    }
    
    .disclaimer {
        font-size: 12px;
        color: #999999;
        text-align: center;
        margin-top: 30px;
    }
    .unsure {
        text-align: center;
    }
    .unsure h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .unsure p {
        font-size: 14px;
        color: #999;
    }
    .unsure a {
        color: #007bff;
        text-decoration: none;
    }
    
    
    
    

        a:hover {
            text-decoration: underline;
        }
        .goback {
            color: #777;
        }

        .question {
            font-size: 16px;
            margin-bottom: 15px;
            overflow: auto;
            /* Helps prevent margin collapsing */
            font-weight: bold;
        }

        .coverMe {
            position: absolute;
            /* Positioned relative to its positioned parent */
            bottom: 0;
            /* Aligns it to the bottom */
            left: 0;
            /* Aligns it to the left */
            width: 100%;
            /* Full width of the container */
            height:55px;
            /* Height of 100px */
            background-color: #E6EBF0;
            /* Color for visibility */
            color: white;
            /* Text color */
            text-align: center;
            /* Centers the text */
            padding: 20px;
            /* Padding for aesthetic */
        }

/* Main styles for the profile area */
.profileArea {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* .mainTop h1 {
    text-align: center;
    color: #333;
} */

.contentText {
    text-align: center;
    margin-bottom: 30px;
}

/* Styles for the question categories */
.listBtnText ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.listBtnText ul > li {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 15px;
}

.listBtnText h3 {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.listBtnText ul > li > ul {
    display: block;
}

.listBtnText ul > li > ul > li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #666;
}

/* Style for the disclaimer */
.dataProfile > p {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 30px;
}



.profileArea {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* .mainTop h1 {
    font-size: 47px;
    font-weight: 800;
    text-align: center;
    color: #333;
} */

.contentText {
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
    color: #555;
}

.listBtnText {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.category-box {
    background-color: #f8f8f8;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.category-title::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

.category-box:nth-child(1) .category-title::before {
    background-image: url('path-to-onboarding-icon.svg');
}

.category-box:nth-child(2) .category-title::before {
    background-image: url('path-to-documents-icon.svg');
}

.category-box:nth-child(3) .category-title::before {
    background-image: url('path-to-people-icon.svg');
}

.category-box:nth-child(4) .category-title::before {
    background-image: url('path-to-technology-icon.svg');
}

.category-box:nth-child(5) .category-title::before {
    background-image: url('path-to-education-icon.svg');
}

.category-box ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.category-box li {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.category-box li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #888;
    font-size: 18px;
    line-height: 1;
}

.unsure-box {
    text-align: center;
    padding: 30px;
}

.unsure-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

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

.unsure-box a {
    color: #e3e3e3;
    text-decoration: none;
}

.unsure-box a::after {
    content: ' →';
}


/* Accordion Styles */
.accordion-container {
    margin-top: 20px;
}

.accordion-section {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    padding: 12px 15px;
    background-color: #f8f8f8;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #f0f0f0;
}

.accordion-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.accordion-icon {
    margin-right: 15px;
    transition: transform 0.3s;
}

.accordion-content {
    display: none;
    padding: 15px;
    background-color: #fff;
}

.accordion-content.show {
    display: block;
}

/* Service Directory Styles */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background-color: #f9f9f9;
    position: relative;
}

.service-icon {
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.service-icon i {
    font-size: 20px;
    color: #666666;
}

.service-title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.service-provider {
    margin-bottom: 15px;
}

.provider-name {
    font-weight: 600;
    margin: 5px 0;
    font-size: 14px;
}

.provider-desc, .provider-phone {
    margin: 5px 0;
    font-size: 13px;
    color: #666;
}

.view-all-btn {
    background-color: #888888;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 5px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.view-all-btn:hover {
    background-color: #666666;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 70%;
    max-width: 700px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

#modal-title {
    margin-top: 0;
    color: #555555;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}


a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

.card-title,
.card-question {
    display: flex;
    align-items: center;
}

.card-title i,
.card-question i {
    margin-right: 5px;
}
