body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: #ffffff;
    color: #000;
}

a {
    color: #000;
    text-decoration: none;
}

header {
    background: #ffffff;
    width: 100%;
    display: flex;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 8px;
}

.max-size-form {
    width: 100%;
    display: flex;
    box-sizing: border-box;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.max-size-form .content {
    width: 100%;
}

.main-full-w {
    width: 100%;
    display: flex;
    box-sizing: border-box;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.max-size-form .header-logo {
    width: 20%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.max-size-form .header-logo a {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.max-size-form .header-logo .header-logo-img {
    height: 40px;
}

.max-size-form .header-menus {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.max-size-form .header-menus .item-menu {
    text-decoration: unset;
    cursor: pointer;
    color: #000000;
    font-size: 16px;
}

.max-size-form .header-menus .item-menu:hover {
    color: #2374d4;
}

.max-size-form .header-menus .item-menu.active-menu {
    color: #2374d4;
    font-weight: bold;
}

.max-size-form .header-button {
    width: 30%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.max-size-form .header-button .languages {
    position: relative;
    cursor: pointer;
    min-width: 140px;
}

.max-size-form .header-button .languages .language-active {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    border: 1px solid #f1f6fe;
    background: #f1f6fe;
    color: #2374d4;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    line-height: 16px;
}

.max-size-form .header-button .languages .language-active::after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
}

.max-size-form .header-button .languages .list-languages {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #f1f6fe;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    z-index: 10000;
    border-radius: 0px 0px 5px 5px;
    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
}

.max-size-form .header-button .languages:hover .list-languages a {
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 5px 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.max-size-form .header-button .languages:hover .list-languages a img {
    height: 16px;
}

.max-size-form .header-button .languages:hover .list-languages a:hover {
    color: #2374d4;
}

.max-size-form .header-button .languages:hover .list-languages {
    display: flex;
}

.max-size-form .header-button .button-sign-in {
    background: #2374d4;
    color: #ffffff;
    border-radius: 5px;
    font-size: 16px;
    padding: 10px;
    line-height: 16px;
    border: 1px solid #2374d4;
}

.max-size-form .header-button .button-sign-in:hover {
    border: 1px solid #2374d4;
    color: #2374d4;
    background: #ffffff;
}

.max-size-form .header-button .button-sign-up {
    color: #2374d4;
    background: #ffffff;
    border-radius: 5px;
    font-size: 16px;
    padding: 10px;
    line-height: 16px;
    border: 1px solid #2374d4;
}

.max-size-form .header-button .button-sign-up:hover {
    border: 1px solid #2374d4;
    color: #ffffff;
    background: #2374d4;
}

.max-size-form .header-button .account-group {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    color: #000;
    padding: 10px 0px;
    gap: 10px;
}

.max-size-form .header-button .account-group::after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    font-size: 18px;
    color: #585858;
}

.max-size-form .header-button .account-group .avata-group {
    width: 51px;
    height: 51px;
    border: 1px solid #ccc;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.max-size-form .header-button .account-group .avata-group img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

.max-size-form .header-button .account-group .items-menu-account {
    position: absolute;
    top: 100%;
    display: none;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 250px;
    margin-right: 10px;
    max-height: 500px;
    overflow: auto;
    right: -30px;
    z-index: 10;
}

.max-size-form .header-button .account-group:hover .items-menu-account {
    display: flex;
}

.max-size-form .header-button .account-group .items-menu-account .item-account {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    cursor: pointer;
}

.max-size-form
    .header-button
    .account-group
    .items-menu-account
    .item-account:hover {
    color: #2374d4;
}

.max-size-form .header-button .notifi-group {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #000;
    padding: 10px 0px;
}

.max-size-form .header-button .notifi-group .dote-notify {
    position: absolute;
    width: 5px;
    height: 5px;
    background: red;
    border-radius: 5px;
    right: 1px;
}

.max-size-form .header-button .notifi-group .lists-notify {
    position: absolute;
    top: 100%;
    display: none;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 300px;
    margin-right: 10px;
    max-height: 500px;
    overflow: auto;
    right: -30px;
    z-index: 10;
}

.max-size-form .header-button .notifi-group:hover .lists-notify {
    display: flex;
}

.max-size-form .header-button .notifi-group .lists-notify .not-notify {
    padding: 10px 15px;
    font-size: 14px;
    color: #383838;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
    display: block;
}

.max-size-form .header-button .notifi-group .lists-notify .item-notify {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    box-sizing: border-box;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10px 15px;
    font-size: 14px;
    color: #000;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

.max-size-form
    .header-button
    .notifi-group
    .lists-notify
    .item-notify
    .title-notifications {
    font-weight: bold;
}

.max-size-form
    .header-button
    .notifi-group
    .lists-notify
    .item-notify
    .times-notifications {
    font-size: 12px;
    color: #727272;
}

.max-size-form .header-button .notifi-group .lists-notify .seamore-notify {
    padding: 10px 15px;
    background: #ccc;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.max-size-form .button-menu-mobile,
.max-size-form .menus-mobile {
    display: none;
}
.max-size-form .header-button .notifi-group .notification-count {
    color: white;
    background: red;
    display: inline-table;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 50%;
    right: -13px;
    top: 0px;
}
.notification-item.unread {
    font-weight: bold;
}
@media (max-width: 768px) {
    header {
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .max-size-form {
        padding: 20px;
        width: 100%;
    }

    .max-size-form .header-menus,
    .max-size-form .header-button {
        display: none;
    }

    .max-size-form .header-logo,
    .max-size-form .header-logo a {
        width: 100%;
        justify-content: center;
    }

    .max-size-form .button-menu-mobile {
        display: block;
        position: absolute;
        left: 20px;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        border: 1px solid #7d7d7d;
        border-radius: 5px;
        color: #7d7d7d;
        z-index: 2;
    }

    .max-size-form .menus-mobile {
        display: none;
        justify-content: space-between;
        align-items: center;
        width: 100vw;
        height: 100vh;
        box-sizing: border-box;
        z-index: 3;
        position: fixed;
        left: 0;
        top: 0;
        background-color: #ffffff;
    }

    .max-size-form .menus-mobile.active-menu-mobile {
        display: flex;
        flex-direction: column;
    }

    .max-size-form .menus-mobile .menu-mobile-header {
        width: 100%;
        display: flex;
        box-sizing: border-box;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        justify-content: center;
        align-items: center;
        position: relative;
        padding: 20px 0px;
    }

    .max-size-form .menus-mobile .menu-mobile-header img {
        height: 40px;
    }

    .max-size-form .menus-mobile .menu-mobile-header .close-menu-mobile {
        display: block;
        position: absolute;
        right: 20px;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        border: 1px solid #7d7d7d;
        border-radius: 5px;
        color: #7d7d7d;
        z-index: 3;
    }

    .max-size-form .menus-mobile .menu-mobile-body {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .max-size-form .menus-mobile .menu-mobile-body .item-menu {
        width: 100%;
        text-align: center;
        font-size: 22px;
        color: #000;
        padding: 20px;
    }

    .max-size-form .menus-mobile .menu-mobile-body .item-menu.active-menu {
        font-weight: bold;
        color: #2374d4;
    }

    .max-size-form .menus-mobile .menu-mobile-body .button-sign-up {
        color: #2374d4;
        background: #ffffff;
        border-radius: 5px;
        font-size: 22px;
        padding: 10px;
        line-height: 26px;
        border: 1px solid #2374d4;
        width: 200px;
        text-align: center;
        margin-top: 20px;
    }

    .max-size-form .menus-mobile .menu-mobile-body .button-sign-in {
        background: #2374d4;
        color: #ffffff;
        border-radius: 5px;
        font-size: 22px;
        padding: 10px;
        line-height: 26px;
        border: 1px solid #2374d4;
        width: 200px;
        text-align: center;
        margin-top: 20px;
    }

    .max-size-form .menus-mobile .menu-mobile-footer {
        width: 100%;
        display: flex;
        box-sizing: border-box;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
        justify-content: flex-end;
        align-items: center;
        position: relative;
        padding: 20px 20px;
        gap: 20px;
        font-size: 20px;
    }

    .max-size-form .menus-mobile .menu-mobile-footer .active-language {
        font-weight: bold;

        color: #2374d4;
    }
}

.footer {
    background-color: #f7f7f8;
}

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

.footer .footer-top .max-size-form {
    width: 100%;
    display: flex;
    box-sizing: border-box;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.footer .footer-top .max-size-form .footer-content {
    box-sizing: border-box;
    width: 100%;
    gap: 10px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* PC: 5 cột bằng nhau */
    gap: 16px;
}

.footer .footer-top .max-size-form .footer-top-col {
    height: 100%;
    display: flex;
}

.footer .footer-top .max-size-form .footer-logo-img {
    height: 40px;
}

.footer .footer-top .max-size-form .footer-top-col .footer-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer .footer-top .max-size-form .footer-top-col .footer-menu-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    margin-bottom: 6px;
    font-weight: bold;
    color: #000000;
}

.footer
    .footer-top
    .max-size-form
    .footer-top-col
    .footer-menu-item
    .footer-menu-link {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    margin-bottom: 6px;
    color: #757682;
}

.footer
    .footer-top
    .max-size-form
    .footer-top-col
    .footer-menu-item
    .footer-menu-link:hover {
    color: #2374d4;
}

.footer .footer-bottom {
    width: 100%;
    border-top: solid 1px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 0px;
}

.footer .footer-bottom .language-active {
    color: #2374d4;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    line-height: 16px;
}

.footer .footer-bottom .language-active::after {
    content: "●";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    font-size: 18px;
    color: #8a8a8a;
}

.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .footer .footer-top .max-size-form {
        padding: 20px;
    }

    .footer .footer-top .max-size-form .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer
        .footer-top
        .max-size-form
        .footer-content
        .footer-top-col:first-child {
        grid-column: span 2;
    }

    .footer .footer-top .max-size-form .footer-top-col,
    .footer .footer-top .max-size-form .footer-top-col .footer-menu {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
}

/* Pages Alls */

main {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    background-color: #ffffff;
}

.banners-home {
    margin-top: -8px;
    position: relative;
    width: 100%;
    height: 500px;
}

.banners-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banners-home .action-banner {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.banners-home .action-banner .title-banner {
    font-size: 38px;
    color: #fff;
    font-weight: bold;
}

.banners-home .action-banner .btn-action-banner {
    background-color: #2374d4;
    padding: 10px 30px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    margin-top: 20px;
}

.banners-home .action-banner .btn-action-banner svg {
    margin-top: 5px;
}

.how-it-works {
    text-align: center;
    width: 100%;
}

.how-it-works .title-how-it-works {
    font-size: 38px;
    color: #000;
    font-weight: bold;
    margin-bottom: 0px;
}

.how-it-works .subheading {
    margin-top: 5px;
    color: #757682;
}

.how-it-works .steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.how-it-works .steps .step {
    flex: 1 1 300px;
    max-width: 300px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.how-it-works .steps .step .icon {
    font-size: 32px;
    margin-bottom: 10px;
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background: #e3ebfb;
}

.how-it-works .steps .step .icon img {
    height: 40px;
}

.faq-section {
    text-align: center;
    width: 100%;
}

.faq-section .faq {
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.faq-section .title-faq-section {
    font-size: 38px;
    color: #000;
    font-weight: bold;
    margin-bottom: 0px;
}

.faq-section .subheading {
    margin-top: 5px;
    color: #757682;
}

.faq-section .faq details {
    background: #f5f5f5;
    border: 1px solid #f5f5f5;
    padding: 0px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.faq-section .faq summary {
    font-weight: bold;
    cursor: pointer;
    padding: 15px;
}

.faq-section .faq .content-faq {
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
}

.faq-section .subheading {
    color: #777;
    font-size: 14px;
    margin-bottom: 40px;
}

.lawyer-form-section {
    padding: 20px 120px;
    text-align: center;
    background-color: #fff;
    width: 100%;
}

.lawyer-form-title {
    font-size: 38px;
    font-weight: bold;
    margin: 0px;
    margin-top: 60px;
}

.lawyer-form-subtitle {
    font-size: 20px;
    color: #888;
    margin-bottom: 64px;
    margin-top: 5px;
}

.lawyer-form-container {
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 64px;
    background: #fafafa;
    padding: 32px 64px;
    border-radius: 12px;
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.08);
    text-align: left;
    box-sizing: border-box;
}

.form-section {
    margin-bottom: 25px;
}

.form-section-title {
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
}

.lawyer-form-row {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
}

.lawyer-form-input,
.lawyer-form-textarea,
.lawyer-form-select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.lawyer-form-textarea {
    min-height: 100px;
    resize: vertical;
}

.lawyer-form-button {
    width: 100%;
    background-color: #2563eb;
    color: white;
    padding: 14px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.lawyer-form-button:hover {
    background-color: #1d4ed8;
}

/* Responsive */

@media screen and (max-width: 768px) {
    .lawyer-form-container {
        padding: 20px 10px;
    }

    .lawyer-form-section {
        padding: 20px 0;
        text-align: center;
        background-color: #fff;
        width: 100%;
    }
}

/* how it work */
/* --- Banner Section --- */
.legal-banner {
    background-image: url("/assets/images/icon/banner.png");
    background-size: cover;
    background-position: center;
    position: relative;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-banner-overlay {
    padding: 40px;
    text-align: center;
    border-radius: 12px;
}

.legal-banner-title {
    color: #fff;
    font-size: 53px;
    font-weight: 700;
    margin-bottom: 36px;
}

.legal-banner-button {
    background-color: #2563eb;
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.legal-banner-button:hover {
    background-color: #1d4ed8;
}

/* --- How It Works Section (vẫn giữ nguyên như cũ) --- */
.how-works-section {
    padding: 60px 20px;
    width: 100%;
    text-align: center;
    background-color: #ffffff;
}

.how-works-title {
    font-size: 54px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    margin-top: 24px;
}

.how-works-subtitle {
    font-size: 18px;
    color: #757682;
    margin-bottom: 40px;
}

.how-works-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.how-works-step {
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 30px 20px;
    max-width: 300px;
    flex: 1 1 280px;
    transition: transform 0.3s ease;
}

.how-works-step:hover {
    transform: translateY(-4px);
}

.how-works-icon {
    margin-bottom: 15px;
}

.how-works-icon-wrapper {
    display: inline-block;
    padding: 30px;
    border-radius: 50%;
    height: 40px;
    background-color: #e3ebfb;
}

.how-works-icon img {
    width: 40px;
    height: 40px;
}

.how-works-heading {
    font-size: 27px;
    font-weight: 500;
    margin-bottom: 10px;
}

.how-works-text {
    font-size: 16px;
    line-height: 1.5;
}

/* --- FAQ Section --- */
.faq-section-custom {
    padding: 60px 20px;
    background-color: #fff;
    border-top: solid 1px #eeeef0;
    width: 100%;
    text-align: center;
}

.faq-title-custom {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 24px;
}

.faq-subtitle-custom {
    font-size: 18px;
    color: #757682;
    margin-bottom: 40px;
}

.faq-items-custom {
    width: 100%;
    text-align: left;
}

.faq-item-custom {
    background: #f1f1f1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.faq-question-custom {
    padding: 32px;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #eeeef0;
}

.faq-question-custom::after {
    content: "▾";
    font-size: 1.16px;
    transition: transform 0.3s;
}

.faq-item-custom[open] .faq-question-custom::after {
    transform: rotate(180deg);
}

.faq-answer-custom {
    padding: 32px;
    font-size: 16px;
    font-weight: 400;
    color: #444;
    background-color: #ffffff;
    border: solid 1px #eeeef0;
    line-height: 1.6;
    border-top: none;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-question-custom {
        font-size: 16px;
    }

    .faq-answer-custom {
        font-size: 16px;
    }

    .how-it-works .steps {
        flex-direction: column;
        align-items: center;
    }

    .how-it-works .steps .step {
        width: 100%;
        max-width: 90%;
        flex: 1 1;
    }

    .faq-section .subheading {
        margin-bottom: 40px;
    }

    .banners-home {
        height: 200px;
    }

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

    .how-works-steps {
        flex-direction: column;
        align-items: center;
    }

    .how-works-step {
        width: 100%;
        max-width: 90%;
    }

    .legal-banner {
        height: 250px;
    }

    .legal-banner-title {
        font-size: 24px;
    }
}

/* end how it work */
/* about */
.about-section {
    padding: 60px 40px;
    width: 100%;
    background-color: #ffffff;
    text-align: center;
}

.about-title {
    font-size: 38px;
    font-weight: bold;
    margin: 0px;
    margin-bottom: 64px;
}

.about-container {
    margin: 0 auto;
    background-color: #fafafa;
    padding: 40px 60px;
    border-radius: 12px;
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.about-block {
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.about-block .about-heading {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.about-block .about-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
}

.about-list {
    list-style: none;
    padding-left: 0;
    font-size: 16px;
    color: #000000;
    line-height: 1.8;
}

.about-list li {
    color: #000000;
    font-weight: 500;
}

.about-footer {
    margin-top: 20px;
    font-size: 16px;
    color: #000000;
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }

    .about-container {
        padding: 12px;
    }

    .about-title {
        font-size: 24px;
    }

    .about-heading {
        font-size: 1.16px;
    }
}

/* end  about */

/* contact */
.contact-section {
    padding: 60px 40px;
    width: 100%;
    background-color: #ffffff;
    text-align: center;
}

.contact-title {
    font-size: 38px;
    font-weight: bold;
    margin: 0px;
    margin-bottom: 64px;
}

.contact-block {
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.contact-block .contact-heading {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-block .contact-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
}

.contact-list {
    list-style: none;
    padding-left: 0;
    font-size: 16px;
    color: #000000;
    line-height: 1.8;
}

.contact-list li {
    color: #000000;
    font-weight: 500;
}

.contact-footer {
    margin-top: 20px;
    font-size: 16px;
    color: #000000;
}

/* 2 */

.contact-container {
    background: #fafafa;

    margin: 0 auto;
    background-color: #fafafa;
    padding: 40px 100px;
    border-radius: 12px;
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.contact-info {
    font-size: 16px;
    padding-bottom: 32px;
    line-height: 1.8;
    border-bottom: solid 1px #eeeef0;
}

.contact-info .contact-info-company,
.contact-info .contact-info-phone,
.contact-info .contact-info-email {
    margin-bottom: 12px;
    font-size: 16px;
}

.contact-info .contact-info-company .contact-info-icon,
.contact-info .contact-info-phone .contact-info-icon,
.contact-info .contact-info-email .contact-info-icon {
    margin-inline-end: 8px;
}

.contact-info .contact-info-company {
    font-weight: 500;
}

.contact-info .contact-info-phone a {
    color: #2563eb;
    text-decoration: underline;
}

.contact-form label {
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

.contact-label-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.contact-field-group {
    flex: 1 1 48%;
    margin-bottom: 16px;
}

.contact-field-group label {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}

.contact-field-group input,
.contact-field-group textarea {
    width: 100%;
    padding: 12px;
    margin: 0;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.contact-field-group textarea {
    min-height: 100px;
}

.contact-button-wrapper {
    text-align: center;
}

.contact-button {
    width: 300px;
    background-color: #2563eb;
    color: white;
    padding: 14px;
    margin: 0 auto;
    margin-top: 36px;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #1d4ed8;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-row {
        flex-direction: column;
    }

    .contact-field-group {
        flex: 1 1 100%;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-container {
        padding: 12px;
    }

    .contact-title {
        font-size: 24px;
    }

    .contact-heading {
        font-size: 16px;
    }
}

/* end  contact */

/* case */
.case-section {
    padding: 60px 40px;
    width: 100%;
    background-color: #ffffff;
    text-align: center;
}

.case-section .case-title {
    font-size: 38px;
    font-weight: bold;
    margin: 0px;
    margin-bottom: 64px;
}

.cases-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    margin-bottom: 12px;
    padding-top: 32px;
    padding-right: 16px;
    padding-bottom: 32px;
    padding-left: 16px;
}

.case-section .case-container {
    max-width: 912px;
    margin: 0 auto;
    padding-inline: 64px;
    padding-bottom: 64px;
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.08);
    text-align: left;
    box-sizing: content-box;
}

.case-section .case-filter-button {
    font-size: 0.9rem;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
}

.case-section .case-card {
    background: #fefefe;
    border-radius: 14px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
}

.case-section .case-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
}

.case-section .case-status {
    font-weight: 600;
    font-size: 0.85rem;
}

.case-section .case-body h4 {
    margin: 0;
    font-size: 1.1rem;
}

.case-section .case-body p {
    margin: 4px 0;
    font-size: 0.95rem;
    color: #444;
}

.case-section .case-card .case-card-summary {
    background-color: #f7f7f8;
    padding-top: 16px;
    padding-right: 8px;
    padding-bottom: 16px;
    padding-left: 16px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    margin-bottom: 16px;
}

.case-section .case-card .case-card-summary .case-card-summary-title {
    margin-bottom: 8px;
}

.case-section .case-card.case-card-finding .case-card-summary {
    border-left: solid 2px #fb923c;
}

.case-section .case-card.case-card-assigned .case-card-summary {
    border-left: solid 2px #4b93e5;
}

.case-section .case-card.case-card-closed .case-card-summary {
    border-left: solid 2px #94a3b8;
}

.case-section .case-card.case-card-cancelled .case-card-summary {
    border-left: solid 2px #f75d5d;
}

.case-section .case-card-finding .case-status i {
    color: #fb923c;
    margin-right: 6px;
}

.case-section .case-card-assigned .case-status i {
    color: #4b93e5;
    margin-right: 6px;
}

.case-section .case-card-closed .case-status i {
    color: #94a3b8;
    margin-right: 6px;
}

.case-section .case-card-cancelled .case-status i {
    color: #f75d5d;
    margin-right: 6px;
}

.case-section .case-footer {
    text-align: center;
}

.case-section .case-card-info {
    display: flex;
    font-size: 14px;
    justify-content: space-between;
}

.case-section .case-location {
    color: #666;
}

.case-section .case-time {
    color: #999;
    font-size: 0.85rem;
}

.case-section .case-button {
    border: none;
    font-weight: 500;
    cursor: pointer;
    width: 300px;
    line-height: 24px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Segoe UI", sans-serif;
}

.case-section .case-button.cancel {
    background-color: #ef4444;
    text-transform: capitalize;
    color: white;
}

.case-section .lawyer-info {
    background-color: #f7f7f8;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    color: #000000;
    font-weight: 500;
}

.case-section .lawyer-info .lawyer-avatar {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    object-fit: cover;
    object-position: center;
}

/* Responsive */
@media (max-width: 768px) {
    .case-section {
        padding: 20px 0;
        width: 100%;
        background-color: #ffffff;
        text-align: center;
    }

    .case-section .case-container {
        padding: 12px;
        box-shadow: unset;
    }
}

/* my case */

/* case detail */

.case-detail-section {
    padding: 60px 40px;
    width: 100%;
    background-color: #ffffff;
    text-align: center;
}

.case-detail-section .case-detail-summary p {
    margin: 0;
}

.case-detail-section .case-detail-title {
    font-size: 38px;
    font-weight: bold;
    margin: 0px;
    margin-bottom: 64px;
}

.case-detail-section .case-detail-container {
    max-width: 912px;
    margin: 0 auto;
    padding: 64px 64px 32px;
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.case-detail-section .case-header {
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 24px;
}

.case-detail-section .case-detail-header {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-detail-section .case-card-finding .case-status i {
    color: #fb923c;
    margin-inline-end: 4px;
}

.case-detail-section .case-card-finding .case-detail-summary {
    border-left: solid 2px #fb923c;
}

.case-detail-section .case-card-assigned .case-status i {
    color: #4b93e5;
    margin-inline-end: 4px;
}

.case-detail-section .case-card-assigned .case-detail-summary {
    border-left: solid 2px #4b93e5;
}

.case-detail-section .case-card-closed .case-status i {
    color: #94a3b8;
    margin-inline-end: 4px;
}

.case-detail-section .case-card-closed .case-detail-summary {
    border-left: solid 2px #94a3b8;
}

.case-detail-section .case-card-cancelled .case-status i {
    color: #f75d5d;
    margin-inline-end: 4px;
}

.case-detail-section .case-card-cancelled .case-detail-summary {
    border-left: solid 2px #f75d5d;
}

.case-detail-section .case-detail-summary {
    background-color: #f7f7f8;
    padding-top: 16px;
    padding-right: 8px;
    padding-bottom: 16px;
    padding-left: 16px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    margin-bottom: 16px;
    color: #000000;
    font-weight: 500;
}

.case-detail-section .case-detail-summary .case-detail-summary-title {
    margin-bottom: 12px;
}

.case-detail-section .case-detail-info .case-detail-item {
    margin-bottom: 16px;
}

.case-detail-section .case-detail-info {
    padding-top: 32px;
    padding-bottom: 32px;
    border-bottom: solid 1px #eeeef0;
}

.case-detail-section
    .case-detail-info
    .case-detail-item
    .case-detail-item-title {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    margin-bottom: 4px;
    display: block;
    font-weight: 400;
    color: #5f5f6a;
}

.case-detail-section
    .case-detail-info
    .case-detail-item
    .case-detail-item-text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    font-weight: 500;
    color: #000000;
    display: block;
}

.case-detail-section
    .case-detail-info
    .case-detail-description
    .case-detail-description-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    display: block;
    margin-top: 36px;
    margin-bottom: 4px;
}

.case-detail-section
    .case-detail-info
    .case-detail-description
    .case-detail-description-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    padding: 16px;
    border-radius: 4px;
    background-color: #f7f7f8;
}

/* person */

.case-detail-section .case-detail-person {
    padding-top: 32px;
    padding-bottom: 16px;
    border-bottom: solid 1px #eeeef0;
}

.case-detail-section .case-detail-person-title {
    margin: 0;
    padding: 0;
    font-size: 22px;
    margin-bottom: 32px;
    font-weight: 500;
}

.case-detail-section .case-detail-person .case-detail-person-item {
    margin-bottom: 16px;
}

.case-detail-section
    .case-detail-person
    .case-detail-person-item
    .case-detail-item-title {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    margin-bottom: 4px;
    font-weight: 400;
    display: block;
    color: #5f5f6a;
}

.case-detail-section
    .case-detail-person
    .case-detail-person-item
    .case-detail-item-text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    font-weight: 500;
    color: #000000;
    display: block;
}

/* lawyer */

.case-detail-section .case-detail-lawyer-title {
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    margin: 0;
    padding: 0;
    font-weight: 500;
    margin-bottom: 32px;
}

.case-detail-section .case-detail-lawyer {
    padding-top: 32px;
}

.card-lawyer {
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 32px;
    margin-top: 64px;
    box-shadow: 0px 0px 16px 0px #00000014;
}

.card-lawyer .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: solid 1px #eeeef0;
}

.card-lawyer .card-body .card-lawyer-detail {
    text-align: center;
}

.card-lawyer .card-body .card-lawyer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 12px;
}

.card-lawyer .card-body .card-lawyer-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.card-lawyer .card-body .card-lawyer-detail-name {
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 8px;
}

.card-lawyer .card-footer .card-lawyer-speciality {
    font-weight: 600;
    font-size: 9px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2374d4;
    padding-top: 4px;
    padding-bottom: 4px;
}

.card-lawyer-button-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
    .case-detail-section {
        padding: 20px 0;
        width: 100%;
        background-color: #ffffff;
        text-align: center;
    }

    .case-detail-section .case-detail-container {
        padding: 24px 12px;
    }
}

/* profile */
/* Container layout */
.settings-container {
    display: flex;
    gap: 24px;
    width: 100%;
    padding: 40px;
    flex-wrap: wrap;
}

/* Sidebar */
.settings-container .settings-sidebar {
    background: #fff;
    box-sizing: border-box;
    border-radius: 16px;
    padding: 12px;
    padding-top: 36px;
    width: 360px;
    min-width: 220px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    align-self: flex-start;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
}

.user-profile img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

.user-info .user-name {
    font-size: 16px;
    margin: 0;
    margin-bottom: 4px;
    font-weight: 600;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.user-info .user-email {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.profile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
}

.profile-nav-item {
    padding: 24px 16px;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s ease;
    color: #374151;
    border-top: solid 1px #f3f4f6;

    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}

.profile-nav-item:hover {
    background: #f3f4f6;
}

.profile-nav-item.active {
    background: #f3f4f6;
    font-weight: 600;
}

.profile-nav-item.danger {
    color: #ef4444;
}

/* Main content */
.settings-content {
    background: #fff;
    border-radius: 16px;
    padding: 32px 12px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.settings-container .settings-content-container {
    max-width: 560px;
    margin: 0 auto;
}

.settings-container .content-title {
    letter-spacing: 0%;
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
}

.settings-container .profile-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.settings-container .profile-form .button-wrapper {
    padding-top: 12px;
    text-align: center;
}

.settings-container .profile-form .btn {
    margin-bottom: 0;
}

.settings-container .profile-form .user-avatar-group-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    margin-top: 32px;
}

.settings-container .profile-form .user-avatar-group {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
}

.settings-container .profile-form .user-avatar-group img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.settings-container .profile-form .user-avatar-group .upload-icon {
    width: 24px;
    height: 24px;
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #2374d4;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
}

.settings-container .icon-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #9ca3af;
}

.settings-container .btn-submit {
    margin-top: 12px;
    padding: 12px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

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

/* Responsive */
@media (max-width: 768px) {
    .settings-container {
        flex-direction: column;
        width: 100%;
        padding: 0px;
    }

    .settings-container .settings-sidebar {
        width: 100%;
        margin-bottom: 20px;
    }

    .settings-container .settings-content {
        width: 100%;
    }
}

.settings-content.settings-content-term {
    padding-bottom: 0;
}

.settings-content.settings-content-term .settings-content-container {
    max-width: 832px;
    padding-right: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
}

.settings-content-term .profile-term-content-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.settings-content-term .profile-term-content-item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: solid 1px #eeeef0;
}

.settings-content-term .profile-term-content-item-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
    letter-spacing: 0%;
}

.settings-content-term .profile-term-content-item-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
}

/* end profile */

.auth-container {
    display: flex;
    width: 1040px;
    margin: 0 auto;
    max-width: 100%;
    flex-wrap: wrap;
    box-shadow: 0px 8px 16px 0px #00000014;
    overflow: hidden;
    border-radius: 16px;
}

.auth-container .auth-left-col {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: left;
    box-sizing: border-box;
}

.auth-container .auth-left-col .img-wrapper img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

.auth-container .auth-right-col {
    flex: 1;
    box-sizing: border-box;
    max-width: 50%;
    display: flex;
    justify-content: left;
    flex-direction: column;
    padding: 32px;
    padding-top: 48px;
}

.auth-container .auth-right-col .auth-form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.auth-container .auth-right-col .form-header {
    margin-bottom: 32px;
}

.auth-container .auth-right-col .form-header-title {
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 8px;
}

.auth-container .auth-right-col .form-header-subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #757682;
}

.auth-container .auth-right-col .auth-form .button-wrapper {
    padding-top: 12px;
    text-align: center;
}

.auth-container .auth-right-col .auth-form .form-footer {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
}

.auth-container .auth-right-col .form-footer-row {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: solid 1px #eeeef0;
    position: relative;
}

.form-footer-row .center-linethrough-text {
    position: absolute;
    background-color: #fff;
    padding-right: 16px;
    padding-left: 16px;
    font-weight: 400;
    font-size: 14px;
    top: -11px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #92939e;
}

.auth-container .auth-right-col .form-footer .btn.btn-icon {
    line-height: 0;
}

.auth-container .auth-right-col .form-footer .btn {
    min-width: unset;
    padding: 12px 48px;
    margin-bottom: 0;
}

.forgot-password-text {
    text-align: center;
    margin-bottom: 64px;
    margin-top: 16px;
}

.forgot-password-text a {
    color: #2374d4;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
        width: 100%;
        padding: 0px;
        gap: 32px;
    }

    .auth-container .auth-left-col {
        flex: 1 1 100%;
        display: flex;
        justify-content: center;
        padding: 0 20px;
        max-width: 100%;
        display: none;
    }

    .auth-container .auth-right-col {
        flex: 1 1 100%;
        display: flex;
        justify-content: center;
        padding: 0;
        max-width: 100%;
        padding: 16px;
    }
}

/* popup lawyer */

.lawyer-detail .lawyer-detail-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: solid 1px #eeeef0;
}

.lawyer-detail .lawyer-detail-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 12px;
}

.lawyer-detail .lawyer-detail-avatar img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.lawyer-detail {
    padding-inline: 48px;
    padding-top: 32px;
    padding-bottom: 16px;
}

.lawyer-detail .lawyer-info {
    text-align: center;
}

.lawyer-detail .lawyer-detail-name {
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 8px;
}

.lawyer-detail .lawyer-detail-row {
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: solid 1px #eeeef0;
}

.lawyer-detail .lawyer-detail-row:last-of-type {
    border-bottom: none;
    padding-bottom: 16px;
    margin-bottom: 0;
}

.lawyer-detail .lawyer-detail-row .row-title {
    margin-top: 16px;
    margin-bottom: 32px;
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
}

.lawyer-detail .lawyer-detail-row .row-content-copy {
    display: flex;
    justify-content: space-between;
}

.lawyer-detail .lawyer-detail-row .row-content .email-text,
.lawyer-detail .lawyer-detail-row .row-content .phone-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
    gap: 8px;
    display: inline-flex;
}

.lawyer-detail .lawyer-detail-row .row-content .phone-text {
    color: #2374d4;
    text-decoration: underline;
}

.copy-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #2374d4;
    gap: 8px;
    display: inline-flex;
}

.lawyer-detail .lawyer-detail-row .row-content ul {
    margin: 0;
}

.lawyer-detail .lawyer-detail-row .row-content li::marker {
    color: #2374d4;
}

.lawyer-detail .lawyer-detail-row .row-content li {
    line-height: 33px;
}

.lawyer-detail .lawyer-detail-row .row-content li span {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
}
/*chat*/
#chat-scroll-message {
    position: fixed;
    width: 350px;
    bottom: 0;
    background: #fff;
    right: 26px;
    z-index: 999999;
}
#chat-scroll-message .service-header {
    position: relative;
    margin-bottom: 0;
    background-color: #eeeeee;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
#chat-scroll-message .service-header .btn-hidden-chat {
    position: absolute;
    color: #003b95;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
}
#chat-scroll-message {
    transition: all 0.3s ease;
}

#chat-scroll-message.hidden {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}
#chat-scroll-message .chat-section {
    position: relative;
    padding: 20px;
    border: 1px solid #ddd;
    border-bottom: 0;
    height: 306px;
    overflow: auto;
}
#chat-scroll-message .chat-section .chat-message {
    padding: 10px;
    font-size: 14px;
    width: 70%;
    display: flex;
    float: right;
    justify-content: flex-end;
}
#chat-scroll-message .chat-section .chat-message.agent {
    float: left;
    justify-content: flex-start;
}
#chat-scroll-message .chat-section .chat-message .agent-message {
    background-color: #f1f1f1;
    color: #555;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
}
#chat-scroll-message .chat-section .chat-message .agent-message p {
    margin: 0;
}
#chat-scroll-message .chat-section .chat-message .user-message {
    background-color: #eeeeee;
    color: #003b95;
    text-align: right;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
}
#chat-scroll-message .chat-section .chat-message .user-message p {
    margin: 0;
}
#chat-scroll-message .chat-input {
    display: flex;
    align-items: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top: 0;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
#chat-scroll-message .chat-input .input-chat {
    position: relative;
    width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
}
#chat-scroll-message .chat-input .input-chat input {
    flex: 1;
    padding: 10px;
    background-color: white;
    border-left: none;
    outline: none;
    font-size: 14px;
    width: 100%;
    color: #8d8d8d;
    border: 1px solid #eeeeee;
    border-radius: 20px;
    margin: 0 35px 0 10px;
}
#chat-scroll-message .chat-input .input-chat button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 14px;
}
#chat-scroll-message .chat-input .input-chat button:focus {
    outline: none;
}
#chat-scroll-message .chat-input .input-chat button.btn-upload-file {
    position: unset;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 10px;
    color: white;
    transform: none;
    padding: 0;
}
.service-category {
    border-bottom: none !important;
}
.location-section .location-info span {
    font-weight: normal;
    font-size: 1.2rem;
}
.location-section .location-info .location-item {
    margin-top: 10px;
    font-size: 1.3rem;
}
.chat-toggle-button {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 1000;
}

.btn-toggle-chat {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #003b95;
    color: white;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: none;
    transition: transform 0.3s ease;
}
.btn-toggle-chat:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #003b95;
    border-radius: 50px;
    animation: pulse 2s infinite;
    z-index: -1;
}

.btn-toggle-chat:hover {
    transform: scale(1.1);
}

#chat-scroll-message {
    transition: all 0.3s ease;
}

#chat-scroll-message.hidden {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.chat-section {
    transition: all 0.3s ease;
}
.chat-toggle-button {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 1000;
}

.btn-toggle-chat {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #003b95;
    color: white;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: none;
    transition: transform 0.3s ease;
}
.btn-toggle-chat:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #003b95;
    border-radius: 50px;
    animation: pulse 2s infinite;
    z-index: -1;
}
.btn-toggle-chat:hover {
    transform: scale(1.1);
}
.service-category {
    margin-bottom: 0px;
    border-bottom: 1px dashed #eeeeee;
    padding: 0 0 10px 0;
    height: 440px;
}
.service-category:last-child {
    border-bottom: none;
}
.service-category .service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.service-category .service-header .service-title {
    font-weight: bold;
    font-size: 18px;
}
.service-category .service-header .service-id {
    font-size: 14px;
    color: #003b95;
}
.service-category .service-header .service-details {
    font-size: 14px;
    color: #888;
    text-decoration: none;
}
.service-category .service-content {
    border-radius: 10px;
    padding: 10px 0;
}
.service-category .service-content .status-appointment {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.service-category .service-content .status-appointment .chat-button {
    background-color: #003b95;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
}
.service-category
    .service-content
    .status-appointment
    .chat-button.unread-message {
    position: relative;
}
.service-category
    .service-content
    .status-appointment
    .chat-button.unread-message::before {
    content: "";
    position: absolute;
    top: -5px;
    right: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: red;
}
.service-category .service-content .status-appointment .status-title {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    background-color: rgb(186, 186, 186);
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
}
.service-category .service-content .status-appointment .status-title.done {
    background-color: #013b94;
    color: white;
}
.service-category .service-content .service-item {
    background-color: #eeeeee;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #003b95;
    text-align: center;
}
.service-category .service-content .service-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
}
.service-category .service-content .service-info .icon {
    margin-right: 5px;
}
.service-category .service-content .service-info .date,
.service-category .service-content .service-info .time {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    min-width: 45%;
    font-weight: bold;
    padding: 10px 0;
    background-color: #eeeeee;
}
.input-group .input-chat {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}
.icofont {
    font-family: "IcoFont" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.chat-input .icofont:before {
    color: #0070f6;
    font-size: 22px;
}
.icofont-image:before {
    content: "\f024";
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.media-body img {
    border-radius: 5px;
}
.label-danger {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#eb3422),
        to(#ef5f51)
    );
    background: linear-gradient(to right, #eb3422, #ef5f51);
}
.label {
    border-radius: 4px;
    font-size: 75%;
    padding: 4px 7px;
    margin-right: 5px;
    font-weight: 400;
    color: #fff !important;
}
.count-mes-unread {
    border-radius: 10px !important;
    position: absolute;
    top: 0;
}
.svg-inline--fa.fa-comments {
    font-size: 25px;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
.chat-notification .show-notification {
    width: 300px;
    left: -150px;
    top: 47px;
}
.chat-notification {
    position: relative;
    cursor: pointer;
    margin: 0 10px;
}
.chat-notification svg path {
    border: 1px solid common.$color_branch_primary;
}
.chat-notification svg {
    color: common.$color_branch_primary;
}
.chat-notification .dropdown-toggle {
    &::after {
        display: none;
    }
}
.chat-notification .badge {
    border-radius: 100px;
    right: -10px;
    position: absolute;
    top: -9px;
    padding: 3px;
    font-size: 11px;
    width: 15px;
    height: 15px;
    background: red;
    color: white;
    text-align: center;
}
.chat-notification span.badge {
    display: inline-block;
}
.dropdown-menu.show {
    display: block;
}
.chat-notification p {
    margin-top: 0;
}
.text-center {
    text-align: center !important;
}
.notification-item {
    padding: 6px;
    border-radius: 6px;
}
.notification-item:hover {
    background-color: #f1f1f1 !important;
}

.notification-item unread {
    background-color: common.$bg-light-lavender;
}
.notification-item:hover {
    background-color: common.$bg-light-lavender;
    cursor: pointer;
}
.notification-item:hover h4,
span,
p {
    color: common.$text-bright-indigo;
}
.notification-item h4 {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    color: #353c4e;
    line-height: 1.3;
}
.notification-item p {
    margin: 5px 0;
    font-size: 14px;
    color: #013b94;
    text-transform: none;
}
.notification-item span {
    font-size: 12px;
}
#notification-dropdown {
    padding: 8px;
    overflow: auto;
    max-height: 420px;
}

@media (max-width: 768px) {
    .service-category .location-section {
        flex-direction: column !important;
    }
    .service-category .location-section .service-content {
        width: 100% !important;
        padding: 0;
    }
    .service-category .location-section .location-info .location-item {
        margin-bottom: 0;
    }
    .service-category .service-content {
        width: 100%;
    }
    .service-category .service-content.partner {
        line-height: 2;
    }
    .service-category .service-content.partner .partner-name {
        font-size: 1.8rem;
        font-weight: 600;
    }
    .service-category .service-content.partner .partner-phone {
        font-size: 1.2rem;
    }
}
@media (max-width: 768px) {
    .lawyer-detail {
        padding-inline: 0;
    }
}

.lawyer-filters {
}

.lawyer-list {
    display: flex;
    flex-direction: column;
}

.lawyer-list .lawyer-item {
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #EEEEF0;
}

.lawyer-list .lawyer-avatar {
    width: 64px;
    height: 64px;
    margin-right: 16px;
}

.lawyer-list .lawyer-avatar img {
    border-radius: 50%;
    object-fit: cover;
    width: 64px;
    height: 64px;
    max-height: 100%;
    object-position: center;
}

.lawyer-list .lawyer-info {
    flex: 1;
}

.lawyer-list .lawyer-name {
    font-weight: 500;
    font-size: 16px;
    color: #111827;
    margin-bottom: 4px;
}

.lawyer-list .lawyer-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-score {
    font-weight: 500;
    color: #111827;
}

.rating-text {
    color: #6b7280;
}

.lawyer-list .lawyer-request-button {
    background: #2374D4 ;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s;
    padding: 6px 12px;
    text-align: center;
    line-height: 20px;
    align-self: flex-end;
}

.lawyer-list .lawyer-request-button:hover {
    background: #1959a8;
}


.lawyer-list .lawyer-filters {
    justify-content: end;
    gap:12px;
    align-items: center;
}
.lawyer-list .lawyer-filter-button {
    color: white;
    border: 1px solid #2374d4;
    border-radius: 6px;
    padding: 8px;
    padding-top: 4px;
}

.lawyer-form .lawyer-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 16px;
}


.lawyer-form .lawyer-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
}

#awn-toast-container{
    z-index: 99999999999999999 !important;
}

.lawyer-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.lawyer-review-avatar img {
    width: 40px;
    height: 40px;
    max-height: 100%;
    max-width: 100%;
    border-radius: 50%;
}

.lawyer-reviews-item {
    border-bottom: 1px solid #EEEEF0;
}

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

.lawyer-reviews-item .lawyer-review-text {
    font-size: 14px;
    color: #757682;
}

.reply-item{
    padding-top: 32px;
    padding-bottom: 32px;
    border-top: 1px solid #EEEEF0;
}

.reply-item-user{
    display: flex;
    align-items: center;
    gap: 8px;
}

.reply-item-user-avatar{    
    width: 40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.reply-item-user-avatar img {     
    width: 40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}
.reply-item-user-name{
    font-size: 14px;
    color: #000000;
    font-weight: 500;
}


.reply-input-container{
    position: relative;
}

.reply-input-container input{
    border-radius: 8px;
    padding: 8px 16px;
    background: #F7F7F8;
    border: none;
    width: 100%;
}

.reply-input-container button{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-40%);
    background: transparent;
    border: none;
}
