:root {
    --primary: #3d4d7d;
    --primary-dark: #2c395f;
    --primary-light: #eef1f8;
    --gold: #c8a45d;
    --gold-light: #e3cb91;
    --dark: #17213b;
    --text: #596174;
    --light: #f7f8fb;
    --white: #ffffff;
    --border: #e6e8ef;
    --radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.topbar {
    background: var(--dark);
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
    padding: 8px 0;
}

.topbar-contact {
    display: flex;
    gap: 25px;
}

.topbar-contact span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.topbar-contact i {
    color: var(--gold);
}

.topbar-login {
    color: white;
    font-weight: 600;
    font-size: 12px;
}

.topbar-login:hover {
    color: var(--gold-light);
}

.main-navbar {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 4px 25px rgba(25, 35, 65, .08);
    padding: 15px 0;
    z-index: 1000;
}

.navbar-logo {
    height: 52px;
    width: auto;
}

.brand-text {
    margin-left: 12px;
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    color: var(--primary);
    font-size: 15px;
    letter-spacing: .5px;
}

.brand-text small {
    color: #8a91a3;
    font-size: 9px;
}

.navbar-nav {
    gap: 2px;
}

.nav-link {
    color: var(--dark) !important;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 10px !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.dropdown-menu {
    border: 0;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 15px 40px rgba(31, 42, 72, .15);
}

.dropdown-item {
    font-size: 12px;
    padding: 9px 12px;
    border-radius: 7px;
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.search-button {
    color: var(--primary);
    border: 1px solid var(--border);
    border-radius: 50%;
    height: 38px;
}

.hero-section {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(25, 35, 65, .9) 0%,
            rgba(25, 35, 65, .65) 45%,
            rgba(25, 35, 65, .15) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 650px;
    color: white;
}

.hero-label {
    display: inline-block;
    color: var(--gold-light);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.12;
    font-weight: 800;
    margin-bottom: 22px;
}

.hero-content h1 span {
    display: block;
    color: var(--gold-light);
}

.hero-content p {
    font-size: 17px;
    max-width: 570px;
    color: rgba(255, 255, 255, .85);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 50px;
}

.btn {
    border-radius: 8px;
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 600;
}

.btn-primary-custom {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-outline-primary-custom {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-outline-primary-custom:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.btn-gold:hover {
    background: #b48f47;
    border-color: #b48f47;
    color: white;
}

.quick-service {
    position: relative;
    z-index: 5;
    margin-top: -65px;
}

.quick-service-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(28, 40, 70, .15);
    padding: 25px;
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 15px;
}

.quick-title span,
.section-label {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.quick-title h3 {
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    margin: 5px 0 0;
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    padding: 10px;
    border-radius: 10px;
    transition: .3s;
}

.quick-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.quick-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 10px;
    font-size: 20px;
}

.quick-item div:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.quick-item strong {
    font-size: 13px;
}

.quick-item small {
    color: #9298a8;
    font-size: 10px;
}

.quick-item>i {
    margin-left: auto;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    color: var(--dark);
    font-weight: 800;
    font-size: 38px;
    line-height: 1.2;
    margin: 10px 0 20px;
}

.section-title span {
    color: var(--primary);
}

.section-description {
    color: #777f91;
    max-width: 650px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
}

.experience-card {
    position: absolute;
    right: -20px;
    bottom: 30px;
    background: var(--primary);
    color: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    display: flex;
    flex-direction: column;
}

.experience-card strong {
    font-size: 32px;
}

.experience-card span {
    font-size: 11px;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}

.about-points div {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.about-points i {
    color: var(--gold);
    margin-right: 8px;
}

.stats-section {
    padding: 60px 0;
    background: var(--primary);
}

.stat-item {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item i {
    color: var(--gold-light);
    font-size: 25px;
    margin-bottom: 8px;
}

.stat-item strong {
    font-size: 28px;
    font-weight: 800;
}

.stat-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    display: block;
    height: 100%;
    border: 1px solid var(--border);
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(61, 77, 125, .2);
    box-shadow:
        0 15px 40px rgba(31, 42, 72, .10);
}

.service-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 25px;
    margin-bottom: 22px;
}

.service-card h5 {
    color: var(--dark);
    font-weight: 700;
}

.service-card p {
    color: #818898;
    font-size: 13px;
}

.service-card span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

.news-card-index {
    border: 1px solid var(--border);
    border-radius: 15px;
    overflow: hidden;
    background: white;
    height: 100%;
    transition: .3s;
}

.news-card-index:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(31, 42, 72, .10);
}

.news-image-index {
    height: 230px;
    position: relative;
    overflow: hidden;
}

.news-image-index img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.news-card-index:hover .news-image-index img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    left: 15px;
    top: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 10px;
    font-size: 10px;
    border-radius: 5px;
}

.news-body {
    padding: 25px;
}

.news-body small {
    font-size: 10px;
    color: #9298a8;
}

.news-body h5 {
    color: var(--dark);
    font-size: 17px;
    font-weight: 700;
    margin: 10px 0;
}

.news-body p {
    font-size: 12px;
    color: #7d8493;
}

.news-body a {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

.information-section {
    background: var(--primary-light);
    padding: 100px 0;
}

.information-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.information-list a {
    background: white;
    padding: 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--dark);
    transition: .3s;
}

.information-list a>i:first-child {
    color: var(--primary);
    font-size: 24px;
}

.information-list a>i:last-child {
    margin-left: auto;
}

.information-list a:hover {
    transform: translateX(5px);
}

.information-list div {
    display: flex;
    flex-direction: column;
}

.information-list strong {
    font-size: 13px;
}

.information-list small {
    font-size: 10px;
    color: #8b91a0;
}

.cta-section {
    padding: 70px 0;
}

.cta-box {
    background: var(--primary);
    border-radius: 20px;
    padding: 50px 60px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.cta-box span {
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.cta-box h2 {
    margin: 7px 0;
    font-weight: 800;
}

.cta-box p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
}

.footer {
    background: #151d32;
    color: rgba(255, 255, 255, .65);
    padding: 80px 0 25px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 12px;
    max-width: 350px;
}

.footer-title {
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}

.footer-contact,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li,
.footer-links li {
    display: flex;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 11px;
}

.footer-contact i,
.footer-links i {
    color: var(--gold);
    flex-shrink: 0;
}

.footer-map {
    height: 160px;
    overflow: hidden;
    border-radius: 10px;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: white;
    transition: .3s;
}

.social-links a:hover {
    background: var(--gold);
}

.footer-divider {
    border-color: rgba(255, 255, 255, .1);
    margin: 50px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
}

@media (max-width: 1199px) {
    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        font-size: 11px;
        padding-left: 7px !important;
        padding-right: 7px !important;
    }
}

@media (max-width: 991px) {
    .topbar-contact span:not(:first-child) {
        display: none;
    }

    .main-navbar {
        padding: 12px 0;
    }

    .navbar-collapse {
        padding-top: 20px;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .nav-link {
        padding: 10px 0 !important;
    }

    .dropdown-menu {
        box-shadow: none;
        background: var(--light);
    }

    .search-button {
        margin-top: 10px;
    }

    .hero-image {
        height: 600px;
    }

    .quick-service-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .quick-title {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .topbar {
        padding: 7px 0;
    }

    .topbar-contact {
        display: none;
    }

    .topbar .container>div {
        justify-content: flex-end !important;
    }

    .brand-text {
        display: none;
    }

    .navbar-logo {
        height: 43px;
    }

    .hero-image {
        height: 560px;
    }

    .hero-content {
        left: 15px;
        right: 15px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-service {
        margin-top: 0;
        padding-top: 20px;
    }

    .quick-service-wrapper {
        grid-template-columns: 1fr;
    }

    .quick-title {
        grid-column: auto;
    }

    .section-padding {
        padding: 70px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .about-image img {
        height: 350px;
    }

    .experience-card {
        right: 15px;
        bottom: 15px;
    }

    .cta-box {
        padding: 35px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

.navbar-scrolled {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
    box-shadow: 0 5px 25px rgba(20, 30, 55, .12);
}

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        background .3s ease;
    box-shadow: 0 8px 25px rgba(61, 77, 125, .25);
    z-index: 999;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


@media (max-width: 767px) {
    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

.profile-hero {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.profile-hero-image {
    position: absolute;
    inset: 0;
}

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

.profile-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg,
            rgba(27, 38, 67, .96) 0%,
            rgba(61, 77, 125, .88) 48%,
            rgba(61, 77, 125, 0.435) 100%);
}

.profile-hero .container {
    position: relative;
    z-index: 2;
}

.profile-hero-content {
    max-width: 760px;
    padding: 80px 0 75px;
    color: white;
}

.profile-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 12px;
}

.profile-hero-breadcrumb a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
}

.profile-hero-breadcrumb a:hover {
    color: white;
}

.profile-hero-breadcrumb i {
    font-size: 9px;
    color: rgba(255, 255, 255, .4);
}

.profile-hero-breadcrumb span {
    color: #d7b76a;
}

.profile-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d7b76a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
}

.profile-hero-label::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #d7b76a;
}

.profile-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -.8px;
}

.profile-hero p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    line-height: 1.8;
}

.profile-page {
    position: relative;
    padding: 90px 0 110px;
    background: #f7f8fb;
}

.profile-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(61, 77, 125, .08);
}

.profile-navigation {
    background: white;
    border-radius: 14px;
    border: 1px solid #e8ebf1;
    overflow: hidden;
    box-shadow:
        0 12px 35px rgba(29, 42, 73, .055);
}

.profile-navigation-title {
    padding: 24px 24px 22px;
    background: #3d4d7d;
    color: white;
}

.profile-navigation-title span {
    display: block;
    color: #d7b76a;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 7px;
}

.profile-navigation-title h5 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
}

.profile-navigation-list {
    padding: 9px;
}

.profile-navigation-list a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 12px;
    border-radius: 9px;
    color: #596174;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
}

.profile-navigation-list a span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-navigation-list a span i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 8px;
    background: #f1f3f8;
    color: #3d4d7d;
    font-size: 14px;
    transition: .25s ease;
}

.profile-navigation-list a>i {
    color: #b0b5c0;
    font-size: 10px;
    transition: .25s ease;
}

.profile-navigation-list a:hover {
    background: #f3f5fa;
    color: #3d4d7d;
}

.profile-navigation-list a:hover>i {
    color: #3d4d7d;
    transform: translateX(3px);
}

.profile-navigation-list a:hover span i {
    background: #e5e9f2;
}

.profile-navigation-list a.active {
    background: #3d4d7d;
    color: white;
}

.profile-navigation-list a.active span i {
    background: rgba(255, 255, 255, .12);
    color: #d7b76a;
}

.profile-navigation-list a.active>i {
    color: #d7b76a;
}

.profile-sidebar-contact {
    position: relative;
    overflow: hidden;
    margin-top: 18px;
    padding: 26px 24px;
    border-radius: 14px;
    background: #273653;
    color: white;
}

.contact-decoration {
    position: absolute;
    width: 110px;
    height: 110px;
    right: -40px;
    top: -40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 10px;
    background: rgba(215, 183, 106, .12);
    color: #d7b76a;
    font-size: 18px;
}

.profile-sidebar-contact h6 {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
}

.profile-sidebar-contact p {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .6);
    font-size: 11px;
    line-height: 1.7;
}

.profile-sidebar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d7b76a;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.profile-sidebar-contact a i {
    transition: .25s;
}

.profile-sidebar-contact a:hover i {
    transform: translate(3px, -3px);
}

.profile-article {
    background: white;
    border: 1px solid #e8ebf1;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 12px 40px rgba(29, 42, 73, .055);
}

.profile-article-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    padding: 38px 42px 25px;
}

.profile-article-header span {
    display: block;
    color: #b0924e;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.profile-article-header h2 {
    margin: 0;
    color: #202b43;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.4px;
}

.article-number {
    color: #e8ebf1;
    font-size: 45px;
    line-height: 1;
    font-weight: 800;
}

.article-line {
    width: 100%;
    height: 1px;
    background: #edf0f4;
    position: relative;
}

.article-line::before {
    content: "";
    position: absolute;
    left: 42px;
    top: -1px;
    width: 50px;
    height: 3px;
    background: #c7a55e;
}

.profile-article-body {
    padding: 35px 42px 40px;
    color: #626b7c;
    font-size: 14px;
    line-height: 1.9;
}

.profile-article-body p {
    margin-bottom: 18px;
}

.profile-article-body h1,
.profile-article-body h2,
.profile-article-body h3,
.profile-article-body h4,
.profile-article-body h5 {
    color: #273653;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
}

.profile-article-body ul,
.profile-article-body ol {
    padding-left: 22px;
    margin-bottom: 20px;
}

.profile-article-body li {
    margin-bottom: 7px;
}

.profile-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 8px 0 22px;
}

.profile-article-body blockquote {
    margin: 25px 0;
    padding: 20px 24px;
    border-left: 3px solid #c7a55e;
    background: #f5f6fa;
    color: #3d4d7d;
}

.profile-article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin: 0 42px 42px;
    padding: 22px 24px;
    background: #f5f6fa;
    border-radius: 10px;
}

.footer-quote {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quote-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 9px;
    background: #3d4d7d;
    color: #d7b76a;
    font-size: 18px;
}

.footer-quote span {
    display: block;
    color: #b0924e;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 3px;
}

.footer-quote p {
    margin: 0;
    color: #4f596c;
    font-size: 11px;
    line-height: 1.6;
}

.profile-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding: 12px 18px;
    border-radius: 7px;
    background: #3d4d7d;
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
}

.profile-primary-btn:hover {
    background: #303e67;
    color: white;
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(61, 77, 125, .2);
}

.profile-primary-btn i {
    transition: .25s;
}

.profile-primary-btn:hover i {
    transform: translateX(3px);
}

.profile-empty {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.profile-empty>i {
    margin-bottom: 15px;
    color: #3d4d7d;
    font-size: 38px;
}

.profile-empty h5 {
    margin-bottom: 7px;
    color: #273653;
    font-weight: 700;
}

.profile-empty p {
    max-width: 400px;
    margin: 0;
    color: #969dab;
    font-size: 12px;
}

@media (max-width: 991px) {
    .profile-hero {
        min-height: 340px;
    }

    .profile-page {
        padding: 65px 0 80px;
    }

    .profile-navigation {
        margin-bottom: 20px;
    }
}


@media (max-width: 767px) {
    .profile-hero {
        min-height: 330px;
    }

    .profile-hero-content {
        padding: 55px 0;
    }

    .profile-hero h1 {
        font-size: 32px;
    }

    .profile-hero p {
        font-size: 13px;
    }

    .profile-page {
        padding: 45px 0 65px;
    }

    .profile-article-header {
        padding: 28px 25px 22px;
    }

    .profile-article-header h2 {
        font-size: 23px;
    }

    .article-number {
        display: none;
    }

    .article-line::before {
        left: 25px;
    }

    .profile-article-body {
        padding: 25px;
        font-size: 13px;
    }

    .profile-article-footer {
        margin: 0 25px 25px;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-primary-btn {
        width: 100%;
        justify-content: center;
    }
}

.governance-section {
    padding: 90px 0 110px;
    background: #f7f8fb;
}

.governance-intro {
    margin-bottom: 45px;
}

.governance-intro h2 {
    margin: 8px 0 15px;
    color: var(--dark);
    font-size: 32px;
    font-weight: 800;
}

.governance-intro p {
    max-width: 700px;
    margin-top: 20px;
    color: #777f91;
    font-size: 14px;
    line-height: 1.9;
}

.governance-group {
    margin-bottom: 70px;
}

.governance-group-second {
    margin-top: 80px;
}

.governance-group-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.governance-number {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--primary);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 800;
    box-shadow:
        0 8px 20px rgba(61, 77, 125, .18);
}

.governance-group-heading span {
    display: block;
    margin-bottom: 3px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.governance-group-heading h3 {
    margin: 0;
    color: var(--dark);
    font-size: 21px;
    font-weight: 750;
}

.regulation-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 17px 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    background: var(--primary-light);
    border-left: 3px solid var(--gold);
}

.regulation-note i {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 18px;
    margin-top: 2px;
}

.regulation-note p {
    margin: 0;
    color: #667085;
    font-size: 12px;
    line-height: 1.7;
}

.person-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    background: white;
    border-radius: 16px;
    border: 1px solid #e9ebf1;
    box-shadow:
        0 8px 30px rgba(31, 42, 72, .055);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.person-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 40px rgba(31, 42, 72, .12);
}

.person-photo {
    position: relative;
    width: 100%;
    height: 310px;
    overflow: hidden;
    background:
        linear-gradient(145deg,
            #eef0f6,
            #dfe3ed);
}

.person-photo::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background:
        linear-gradient(to top,
            rgba(31, 42, 72, .18),
            transparent);
}

.person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition:
        transform .5s ease;
}

.person-card:hover .person-photo img {
    transform: scale(1.04);
}

.person-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.person-placeholder i {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
    color: var(--primary);
    font-size: 55px;
}

.person-info {
    padding: 22px 24px 25px;
}

.person-position {
    display: block;
    margin-bottom: 6px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.person-info h4 {
    margin: 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 750;
    line-height: 1.4;
}

.person-line {
    width: 35px;
    height: 3px;
    margin-top: 14px;
    border-radius: 10px;
    background: var(--primary);
}

.empty-person {
    padding: 45px 20px;
    text-align: center;
    background: white;
    border: 1px dashed #d9dce5;
    border-radius: 14px;
    color: #9298a8;
}

.empty-person i {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 35px;
}

.empty-person p {
    margin: 0;
    font-size: 13px;
}

@media (max-width: 991px) {
    .governance-section {
        padding: 70px 0 80px;
    }

    .governance-group {
        margin-bottom: 55px;
    }
}

@media (max-width: 767px) {
    .governance-section {
        padding: 50px 0 70px;
    }

    .governance-intro h2 {
        font-size: 26px;
    }

    .governance-group-heading {
        align-items: flex-start;
    }

    .governance-number {
        width: 45px;
        height: 45px;
        border-radius: 11px;
        font-size: 11px;
    }

    .governance-group-heading h3 {
        font-size: 18px;
    }

    .person-photo {
        height: 350px;
    }
}

.founder-section {
    padding: 90px 0 110px;
    background: #f7f8fb;
}

.founder-intro {
    margin-bottom: 45px;
}

.founder-intro h2 {
    margin: 8px 0 15px;
    color: var(--dark);
    font-size: 32px;
    font-weight: 800;
}

.founder-intro p {
    max-width: 680px;
    margin-top: 20px;
    color: #777f91;
    font-size: 14px;
    line-height: 1.9;
}

.founder-info-card {
    margin-top: 20px;
    padding: 28px 25px;
    border-radius: 16px;
    background:
        linear-gradient(145deg,
            var(--primary),
            #2f3d66);
    color: white;
    box-shadow:
        0 12px 35px rgba(61, 77, 125, .15);
}

.founder-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .12);
    color: var(--gold-light);
    font-size: 20px;
}

.founder-info-card h5 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
}

.founder-info-card p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    line-height: 1.8;
}

.founder-block {
    margin-bottom: 65px;
}

.mitra-block {
    margin-top: 70px;
}

.founder-block-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.founder-heading-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 13px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 20px;
}

.founder-block-heading span {
    display: block;
    margin-bottom: 3px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.founder-block-heading h3 {
    margin: 0;
    color: var(--dark);
    font-size: 21px;
    font-weight: 750;
}

.founder-main-card {
    display: flex;
    align-items: center;
    gap: 35px;
    min-height: 260px;
    padding: 35px;
    background: white;
    border: 1px solid #e8eaf0;
    border-radius: 18px;
    box-shadow:
        0 10px 35px rgba(31, 42, 72, .06);
    transition: .3s ease;
}

.founder-main-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 40px rgba(31, 42, 72, .1);
}

.founder-main-logo {
    width: 220px;
    height: 160px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 14px;
    background: #f8f9fc;
    border: 1px solid #edf0f5;
}

.founder-main-logo img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.founder-main-info span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.founder-main-info h4 {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.35;
}

.founder-main-info p {
    margin: 0;
    color: #858c9c;
    font-size: 12px;
}

.mitra-description {
    margin: -5px 0 25px;
    color: #777f91;
    font-size: 13px;
    line-height: 1.8;
}

.mitra-card {
    height: 100%;
    min-height: 190px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: white;
    border: 1px solid #e7e9ef;
    border-radius: 14px;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.mitra-card:hover {
    transform: translateY(-5px);
    border-color: rgba(61, 77, 125, .2);
    box-shadow:
        0 12px 30px rgba(31, 42, 72, .08);
}

.mitra-logo {
    width: 120px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.mitra-logo img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .7;
    transition: .3s ease;
}

.mitra-card:hover .mitra-logo img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

.mitra-name {
    width: 100%;
    padding-top: 13px;
    border-top: 1px solid #edf0f4;
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
}

.logo-placeholder {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 35px;
}

.logo-placeholder.small {
    width: 65px;
    height: 65px;
    font-size: 25px;
}

.founder-empty {
    padding: 45px 20px;
    text-align: center;
    background: white;
    border: 1px dashed #d9dce5;
    border-radius: 14px;
    color: #9298a8;
}

.founder-empty i {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 35px;
}

.founder-empty p {
    margin: 0;
    font-size: 13px;
}

@media (max-width: 767px) {
    .founder-section {
        padding: 55px 0 70px;
    }

    .founder-intro h2 {
        font-size: 26px;
    }

    .founder-main-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .founder-main-logo {
        width: 100%;
        height: 150px;
    }

    .founder-main-info h4 {
        font-size: 20px;
    }

    .founder-block-heading h3 {
        font-size: 18px;
    }

    .mitra-card {
        min-height: 170px;
    }

    .mitra-logo {
        width: 100px;
        height: 80px;
    }
}

.structure-section {
    padding: 90px 0 110px;
    background: #f7f8fb;
}

.structure-heading {
    max-width: 720px;
    margin: 0 auto 45px;
}

.structure-heading h2 {
    margin: 8px 0 15px;
    color: var(--dark);
    font-size: 32px;
    font-weight: 800;
}

.structure-heading p {
    max-width: 620px;
    margin: 20px auto 0;
    color: #777f91;
    font-size: 14px;
    line-height: 1.8;
}

.structure-card {
    padding: 30px;
    background: white;
    border: 1px solid #e7e9ef;
    border-radius: 18px;
    box-shadow:
        0 12px 40px rgba(31, 42, 72, .07);
}

.structure-image-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fafbfc;
    border: 1px solid #edf0f4;
    border-radius: 12px;
    overflow-x: auto;
}

.structure-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.structure-empty {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #9298a8;
}

.structure-empty i {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 55px;
}

.structure-empty h5 {
    margin-bottom: 5px;
    color: var(--dark);
    font-weight: 700;
}

.structure-empty p {
    margin: 0;
    font-size: 13px;
}

@media (max-width: 767px) {
    .structure-section {
        padding: 55px 0 70px;
    }

    .structure-heading h2 {
        font-size: 26px;
    }

    .structure-heading p {
        font-size: 13px;
    }

    .structure-card {
        padding: 12px;
        border-radius: 14px;
    }

    .structure-image-wrapper {
        padding: 10px;
        border-radius: 10px;
    }
}

.news-section {
    padding: 90px 0 110px;
    background: #f7f8fb;
}

.news-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px;
}

.news-heading h2 {
    margin: 7px 0 0;
    color: var(--dark);
    font-size: 30px;
    font-weight: 800;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    overflow: hidden;
    background: white;
    border: 1px solid #e8eaf0;
    border-radius: 16px;
    box-shadow:
        0 8px 30px rgba(31, 42, 72, .05);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 18px 40px rgba(31, 42, 72, .10);
}

.news-card-image {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    background: #e9ecf3;
}

.news-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    transition:
        transform .5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-category-badge {
    position: absolute;
    left: 15px;
    bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    border-radius: 6px;
    background: var(--primary);
    color: white;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .5px;
}

.news-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 27px 28px;
}

.news-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
}

.news-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #969cac;
    font-size: 10px;
}

.news-meta i {
    color: var(--gold);
    font-size: 11px;
}

.news-card-content h3 {
    margin: 0 0 10px;
    line-height: 1.4;
}

.news-card-content h3 a {
    color: var(--dark);
    font-size: 19px;
    font-weight: 750;
    transition: color .25s ease;
}

.news-card-content h3 a:hover {
    color: var(--primary);
}

.news-card-content p {
    margin: 0 0 18px;
    color: #7b8292;
    font-size: 12px;
    line-height: 1.8;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    transition: gap .25s ease;
}

.news-read-more i {
    color: var(--gold);
    transition: transform .25s ease;
}

.news-read-more:hover {
    color: var(--primary);
    gap: 10px;
}

.news-read-more:hover i {
    transform: translateX(3px);
}

.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-widget {
    padding: 25px;
    background: white;
    border: 1px solid #e8eaf0;
    border-radius: 16px;
    box-shadow:
        0 8px 30px rgba(31, 42, 72, .05);
}

.news-widget-heading {
    margin-bottom: 20px;
}

.news-widget-heading span {
    display: block;
    margin-bottom: 5px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.news-widget-heading h4 {
    margin: 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 750;
}

.news-search {
    position: relative;
    display: flex;
}

.news-search input {
    width: 100%;
    height: 46px;
    padding: 0 52px 0 15px;
    border: 1px solid #e1e4eb;
    border-radius: 8px;
    outline: none;
    color: var(--dark);
    font-size: 12px;
    background: #fafbfc;
    transition: .25s ease;
}

.news-search input:focus {
    border-color: var(--primary);
    background: white;
    box-shadow:
        0 0 0 3px rgba(61, 77, 125, .08);
}

.news-search input::placeholder {
    color: #a0a5b1;
}

.news-search button {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 6px;
    background: var(--primary);
    color: white;
    transition: .25s ease;
}

.news-search button:hover {
    background: #303d65;
}

.news-archive {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.news-archive-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 10px;
    border-radius: 8px;
    color: #687083;
    font-size: 11px;
    transition: .25s ease;
}

.news-archive-item:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 14px;
}

.news-archive-item span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-archive-item i {
    color: var(--gold);
}

.news-archive-item strong {
    min-width: 25px;
    padding: 3px 7px;
    text-align: center;
    border-radius: 20px;
    background: #eef0f5;
    color: #777f91;
    font-size: 9px;
}

.news-widget-empty {
    margin: 0;
    color: #999fae;
    font-size: 11px;
}

.recent-news {
    display: flex;
    flex-direction: column;
}

.recent-news-item {
    display: flex;
    gap: 13px;
    padding: 13px 0;
    border-bottom: 1px solid #edf0f4;
}

.recent-news-item:first-child {
    padding-top: 0;
}

.recent-news-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.recent-news-image {
    width: 72px;
    height: 65px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #e9ecf3;
}

.recent-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.recent-news-item:hover .recent-news-image img {
    transform: scale(1.08);
}

.recent-news-content {
    min-width: 0;
}

.recent-news-content span {
    display: block;
    margin-bottom: 4px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
}

.recent-news-content h5 {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: color .25s ease;
}

.recent-news-item:hover .recent-news-content h5 {
    color: var(--primary);
}

.news-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.news-empty {
    padding: 70px 30px;
    text-align: center;
    background: white;
    border: 1px dashed #d9dce5;
    border-radius: 16px;
}

.news-empty-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 28px;
}

.news-empty h4 {
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 750;
}

.news-empty p {
    margin: 0;
    color: #9298a8;
    font-size: 12px;
}

@media (max-width: 991px) {
    .news-section {
        padding: 70px 0 80px;
    }

    .news-card {
        grid-template-columns: 240px 1fr;
    }
}

@media (max-width: 767px) {
    .news-section {
        padding: 50px 0 70px;
    }

    .news-heading h2 {
        font-size: 26px;
    }

    .news-card {
        display: block;
    }

    .news-card-image {
        height: 220px;
        min-height: 220px;
    }

    .news-card-image img {
        min-height: 220px;
    }

    .news-card-content {
        padding: 22px;
    }

    .news-card-content h3 a {
        font-size: 17px;
    }

    .news-sidebar {
        margin-top: 10px;
    }
}

.news-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.custom-pagination {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    padding: 7px;
    background: white;
    border: 1px solid #e8eaf0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(31, 42, 72, .05);
}

.custom-pagination .page-item {
    margin: 0;
}

.custom-pagination .page-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #687083;
    font-size: 11px;
    font-weight: 700;
    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.custom-pagination .page-item:not(.active):not(.disabled) .page-link:hover {
    background: var(--primary-light);
    color: var(--primary);
    transform: translateY(-1px);
}

.custom-pagination .page-item.active .page-link {
    background: var(--primary);
    color: white;
    box-shadow:
        0 5px 15px rgba(61, 77, 125, .20);
}

.custom-pagination .pagination-arrow {
    color: var(--primary);
    font-size: 12px;
}

.custom-pagination .pagination-arrow:hover {
    background: var(--primary);
    color: white;
}

.custom-pagination .pagination-arrow i {
    transition: transform .25s ease;
}

.custom-pagination .page-item:not(.disabled):first-child .pagination-arrow:hover i {
    transform: translateX(-2px);
}

.custom-pagination .page-item:not(.disabled):last-child .pagination-arrow:hover i {
    transform: translateX(2px);
}

.custom-pagination .page-item.disabled .page-link {
    background: transparent;
    color: #c4c8d1;
    cursor: not-allowed;
}

.custom-pagination .pagination-dots {
    color: #9da3b0;
    font-weight: 700;
    letter-spacing: 1px;
}

@media (max-width: 767px) {
    .news-pagination {
        margin-top: 30px;
    }

    .custom-pagination {
        gap: 4px;
        padding: 5px;
        border-radius: 10px;
    }

    .custom-pagination .page-link {
        width: 34px;
        height: 34px;
        border-radius: 7px;
        font-size: 10px;
    }
}

.information-section {
    padding: 90px 0 110px;
    background: #f7f8fb;
}

.information-sidebar {
    overflow: hidden;
    background: white;
    border: 1px solid #e7e9ef;
    border-radius: 16px;
    box-shadow:
        0 8px 30px rgba(31, 42, 72, .05);
}

.information-sidebar-header {
    padding: 25px;
    background:
        linear-gradient(145deg,
            var(--primary),
            #303d65);
    color: white;
}

.information-sidebar-header span {
    display: block;
    margin-bottom: 5px;
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.information-sidebar-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 750;
}

.information-menu {
    padding: 10px;
}

.information-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 13px;
    border-radius: 9px;
    color: #687083;
    font-size: 11px;
    transition:
        background .25s ease,
        color .25s ease,
        padding .25s ease;
}

.information-menu-item span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.information-menu-item span i {
    width: 20px;
    color: var(--primary);
    font-size: 15px;
    text-align: center;
}

.information-menu-item>i {
    color: #b2b6c1;
    font-size: 11px;
    transition: transform .25s ease;
}

.information-menu-item:hover {
    padding-left: 17px;
    background: var(--primary-light);
    color: var(--primary);
}

.information-menu-item:hover>i {
    transform: translateX(3px);
    color: var(--primary);
}

.information-menu-item.active {
    background: var(--primary);
    color: white;
}

.information-menu-item.active span i,
.information-menu-item.active>i {
    color: var(--gold-light);
}

.information-help-card {
    margin-top: 20px;
    padding: 27px 25px;
    border-radius: 16px;
    background:
        linear-gradient(145deg,
            var(--primary),
            #303d65);
    color: white;
    box-shadow:
        0 12px 35px rgba(61, 77, 125, .15);
}

.information-help-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    color: var(--gold-light);
    font-size: 20px;
}

.information-help-card h5 {
    margin-bottom: 9px;
    font-size: 16px;
    font-weight: 750;
}

.information-help-card p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
    line-height: 1.8;
}

.information-help-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 7px;
    color: white;
    font-size: 10px;
    font-weight: 700;
    transition: .25s ease;
}

.information-help-button:hover {
    background: white;
    color: var(--primary);
}

.information-content {
    min-width: 0;
}

.information-heading {
    margin-bottom: 35px;
}

.information-heading h2 {
    margin: 7px 0 13px;
    color: var(--dark);
    font-size: 30px;
    font-weight: 800;
}

.information-heading p {
    max-width: 680px;
    margin: 18px 0 0;
    color: #777f91;
    font-size: 13px;
    line-height: 1.8;
}

.information-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.information-item {
    overflow: hidden;
    background: white;
    border: 1px solid #e6e9ef;
    border-radius: 13px;
    box-shadow:
        0 5px 20px rgba(31, 42, 72, .04);
    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.information-item:has(.information-item-button:not(.collapsed)) {
    border-color: rgba(61, 77, 125, .25);
    box-shadow:
        0 10px 28px rgba(31, 42, 72, .07);
}

.information-item-button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border: 0;
    background: white;
    color: var(--dark);
    text-align: left;
    cursor: pointer;
}

.information-item-number {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 8px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
}

.information-item-title {
    flex: 1;
    padding-right: 10px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}

.information-item-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #f0f2f6;
    color: var(--primary);
    font-size: 13px;
    transition:
        transform .3s ease,
        background .3s ease;
}

.information-item-button:not(.collapsed) .information-item-icon {
    background: var(--primary);
    color: white;
    transform: rotate(45deg);
}

.information-item-body {
    padding: 0 20px 22px 68px;
}

.information-description {
    padding-top: 5px;
    color: #70788a;
    font-size: 12px;
    line-height: 1.9;
}

.information-description p:last-child {
    margin-bottom: 0;
}

.information-description ul,
.information-description ol {
    padding-left: 20px;
}

.information-document {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 13px;
    border: 1px solid #e7e9ef;
    border-radius: 10px;
    background: #fafbfc;
}

.information-document-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 8px;
    background: #fff0f0;
    color: #d9534f;
    font-size: 18px;
}

.information-document-info {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.information-document-info strong {
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
}

.information-document-info span {
    overflow: hidden;
    color: #9096a4;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.information-document-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    padding: 8px 12px;
    border: 0;
    border-radius: 7px;
    background: var(--primary);
    color: white;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s ease;
}

.information-document-button:hover {
    background: #303d65;
    color: white;
}

.information-empty {
    padding: 65px 25px;
    text-align: center;
    background: white;
    border: 1px dashed #d8dce5;
    border-radius: 15px;
}

.information-empty-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 17px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 26px;
}

.information-empty h4 {
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 17px;
    font-weight: 750;
}

.information-empty p {
    margin: 0;
    color: #9298a8;
    font-size: 11px;
}

.document-modal {
    overflow: hidden;
    border: 0;
    border-radius: 14px;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, .2);
}

.document-modal .modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e8eaf0;
    background: white;
}

.document-modal-title {
    display: flex;
    align-items: center;
    gap: 11px;
}

.document-modal-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff0f0;
    color: #d9534f;
    font-size: 17px;
}

.document-modal-title span {
    display: block;
    margin-bottom: 2px;
    color: var(--gold);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.document-modal-title h5 {
    max-width: 650px;
    margin: 0;
    overflow: hidden;
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.document-modal .modal-body {
    padding: 0;
    background: #252932;
}

.document-viewer {
    width: 100%;
    height: 75vh;
    min-height: 500px;
}

.document-viewer iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 991px) {
    .information-section {
        padding: 70px 0 80px;
    }

    .information-sidebar {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {

    .information-section {
        padding: 50px 0 70px;
    }

    .information-heading h2 {
        font-size: 26px;
    }

    .information-sidebar-header {
        padding: 21px;
    }

    .information-menu-item {
        padding: 13px 11px;
        font-size: 10px;
    }

    .information-help-card {
        padding: 23px 20px;
    }

    .information-item-button {
        padding: 15px;
        gap: 10px;
    }

    .information-item-number {
        width: 30px;
        height: 30px;
        font-size: 9px;
    }

    .information-item-title {
        font-size: 11px;
    }

    .information-item-body {
        padding: 0 15px 18px 55px;
    }

    .information-description {
        font-size: 11px;
        line-height: 1.8;
    }

    .information-document {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .information-document-info {
        width: calc(100% - 55px);
        flex: none;
    }

    .information-document-button {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }

    .document-viewer {
        height: 75vh;
        min-height: 400px;
    }

    .document-modal-title h5 {
        max-width: 200px;
    }
}

.membership-data-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e6e9ef;
    border-radius: 16px;
    box-shadow:
        0 8px 30px rgba(31, 42, 72, .05);
}

.membership-data-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 25px;
    border-bottom: 1px solid #edf0f4;
    background: #fff;
}

.membership-data-header span {
    display: block;
    margin-bottom: 5px;
    color: var(--gold);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.membership-data-header h4 {
    margin: 0;
    color: var(--dark);
    font-size: 17px;
    font-weight: 750;
}

.membership-data-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 19px;
}

.membership-data-body {
    padding: 25px;
    color: #6f7788;
    font-size: 12px;
    line-height: 1.8;
    overflow-x: auto;
}

.membership-data-body table {
    width: 100% !important;
    margin: 0;
    border-collapse: collapse;
    border: 0 !important;
}

.membership-data-body table thead th {
    padding: 12px 14px;
    background: var(--primary);
    border: 0;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.membership-data-body table tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid #edf0f4;
    color: #687083;
    font-size: 10px;
    vertical-align: middle;
}

.membership-data-body table tbody tr {
    transition: background .2s ease;
}

.membership-data-body table tbody tr:hover {
    background: #f7f8fb;
}

.membership-data-body table tbody tr:last-child td {
    border-bottom: 0;
}

.membership-data-body img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {

    .membership-data-header {
        padding: 18px;
    }

    .membership-data-header h4 {
        font-size: 15px;
    }

    .membership-data-body {
        padding: 18px;
    }

    .membership-data-body table {
        min-width: 600px;
    }
}

.regulation-section {
    padding: 80px 0 110px;
    background: #f7f8fb;
}

.regulation-content {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e6e9ef;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(31, 42, 72, .06);
}

.regulation-content-header {
    padding: 30px 35px;
    border-bottom: 1px solid #edf0f4;
}

.regulation-content-header .label {
    display: block;
    margin-bottom: 7px;
    color: #b4975a;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.regulation-content-header h2 {
    margin: 0 0 8px;
    color: #29324a;
    font-size: 25px;
    font-weight: 800;
}

.regulation-content-header p {
    max-width: 650px;
    margin: 0;
    color: #7a8291;
    font-size: 12px;
    line-height: 1.7;
}

.regulation-list {
    padding: 25px 35px 35px;
}

.regulation-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    margin-bottom: 12px;
    border: 1px solid #e8ebf0;
    border-radius: 12px;
    background: #fff;
    transition: all .25s ease;
}

.regulation-item:last-child {
    margin-bottom: 0;
}

.regulation-item:hover {
    border-color: #d6dce8;
    background: #fafbfc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 42, 72, .06);
}

.regulation-document-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 11px;
    background: #eef1f8;
    color: #3d4d7d;
    font-size: 20px;
}

.regulation-item:hover .regulation-document-icon {
    background: #3d4d7d;
    color: #fff;
}

.regulation-document-content {
    flex: 1;
    min-width: 0;
}

.regulation-document-content h5 {
    margin: 0 0 5px;
    color: #30384c;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.6;
}

.regulation-document-content p {
    margin: 0;
    color: #7f8796;
    font-size: 11px;
    line-height: 1.6;
}

.regulation-document-action {
    flex-shrink: 0;
}

.btn-document {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid #d9deea;
    border-radius: 8px;
    background: #fff;
    color: #3d4d7d;
    font-size: 10px;
    font-weight: 700;
    transition: all .25s ease;
}

.btn-document:hover {
    border-color: #3d4d7d;
    background: #3d4d7d;
    color: #fff;
}

.btn-document i {
    font-size: 14px;
}

.regulation-empty {
    padding: 70px 30px;
    text-align: center;
}

.regulation-empty-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #eef1f8;
    color: #3d4d7d;
    font-size: 24px;
}

.regulation-empty h5 {
    margin-bottom: 7px;
    color: #343c50;
    font-size: 15px;
    font-weight: 750;
}

.regulation-empty p {
    margin: 0;
    color: #9299a7;
    font-size: 11px;
}

.regulation-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
}

.regulation-modal .modal-header {
    display: flex;
    align-items: center;
    padding: 18px 22px;
    background: #3d4d7d;
    border: 0;
}

.regulation-modal .modal-title {
    margin: 0;
    padding-right: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.regulation-modal .modal-header .close {
    color: #fff;
    opacity: .8;
    text-shadow: none;
    font-size: 22px;
}

.regulation-modal .modal-header .close:hover {
    color: #fff;
    opacity: 1;
}

.regulation-modal .modal-body {
    padding: 0;
    background: #edf0f4;
}

.regulation-modal iframe {
    display: block;
    width: 100%;
    height: 75vh;
    border: 0;
}

.regulation-modal .modal-footer {
    padding: 12px 20px;
    border-top: 1px solid #e7e9ed;
}

.regulation-modal .btn-secondary {
    border: 0;
    border-radius: 7px;
    background: #eef0f4;
    color: #555d6e;
    font-size: 11px;
}

@media (max-width: 991px) {

    .regulation-section {
        padding: 55px 0 75px;
    }

    .regulation-sidebar {
        position: static;
        margin-bottom: 25px;
    }

}

@media (max-width: 767px) {

    .regulation-content-header {
        padding: 25px 20px;
    }

    .regulation-content-header h2 {
        font-size: 21px;
    }

    .regulation-list {
        padding: 20px;
    }

    .regulation-item {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 15px;
    }

    .regulation-document-content {
        width: calc(100% - 66px);
    }

    .regulation-document-action {
        width: 100%;
        padding-left: 66px;
    }

    .btn-document {
        width: 100%;
    }

    .regulation-modal iframe {
        height: 70vh;
    }

}

.antifraud-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8ebf1;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(31, 42, 72, .07);
}

.antifraud-card-header {
    position: relative;
    padding: 28px 32px;
    background: #3d4d7d;
}

.antifraud-card-header::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 150px;
    height: 100%;
    background:
        linear-gradient(135deg,
            transparent 40%,
            rgba(255, 255, 255, .05));
    pointer-events: none;
}

.antifraud-card-header-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 18px;
}

.antifraud-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 24px;
}

.antifraud-card-header h3 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 18px;
    font-weight: 750;
}

.antifraud-card-header span {
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
}

.antifraud-content {
    padding: 38px 40px;
}

.antifraud-content article {
    color: #5f6777;
    font-size: 14px;
    line-height: 1.9;
}

.antifraud-content article p {
    margin-bottom: 18px;
}

.antifraud-content article h1,
.antifraud-content article h2,
.antifraud-content article h3,
.antifraud-content article h4,
.antifraud-content article h5,
.antifraud-content article h6 {
    color: #30384c;
    font-weight: 750;
    line-height: 1.5;
}

.antifraud-content article img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.antifraud-content article table {
    width: 100% !important;
    margin: 20px 0;
    border-collapse: collapse;
}

.antifraud-content article table th,
.antifraud-content article table td {
    padding: 10px 12px;
    border: 1px solid #e3e6ec;
}

.antifraud-document {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 35px;
    padding: 20px 22px;
    border: 1px solid #e4e7ee;
    border-radius: 14px;
    background: #f8f9fc;
}

.antifraud-document-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.antifraud-document-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: #eef1f7;
    color: #3d4d7d;
    font-size: 20px;
}

.antifraud-document-info strong {
    display: block;
    margin-bottom: 3px;
    color: #343c50;
    font-size: 13px;
}

.antifraud-document-info span {
    color: #8a91a0;
    font-size: 10px;
}

.btn-antifraud {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    background: #3d4d7d;
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
}

.btn-antifraud:hover {
    background: #303e67;
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(61, 77, 125, .2);
}

@media (max-width: 767px) {

    .antifraud-section {
        padding: 55px 0 70px;
    }

    .antifraud-heading {
        margin-bottom: 30px;
    }

    .antifraud-heading h2 {
        font-size: 23px;
    }

    .antifraud-heading p {
        font-size: 12px;
    }

    .antifraud-card-header {
        padding: 22px;
    }

    .antifraud-card-header h3 {
        font-size: 15px;
    }

    .antifraud-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .antifraud-content {
        padding: 25px 20px;
    }

    .antifraud-content article {
        font-size: 13px;
    }

    .antifraud-document {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px;
    }

    .btn-antifraud {
        width: 100%;
        justify-content: center;
    }

}

.topbar-user {
    position: relative;
}

.topbar-user-toggle {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 4px 8px 4px 5px;
    border: 0;
    border-radius: 30px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    cursor: pointer;
    transition: .25s ease;
}

.topbar-user-toggle:hover,
.topbar-user.show .topbar-user-toggle {
    background: rgba(255, 255, 255, .15);
}

.topbar-user-avatar {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, .7);
}

.topbar-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topbar-user-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.topbar-user-info small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, .65);
    font-size: 8px;
    font-weight: 500;
}

.topbar-user-info strong {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.topbar-user-arrow {
    margin-left: 2px;
    color: rgba(255, 255, 255, .75);
    font-size: 10px;
    transition: .25s ease;
}

.topbar-user.show .topbar-user-arrow {
    transform: rotate(180deg);
}

.topbar-user-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 9999;
    display: none;
    width: 285px;
    min-width: 285px;
    padding: 8px;
    border: 1px solid #e7eaf0;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(31, 42, 72, .14);
}

.topbar-user-menu.show {
    display: block;
}

.topbar-user-toggle {
    cursor: pointer;
}

.topbar-user-arrow {
    transition: transform .2s ease;
}

.topbar-user.open .topbar-user-arrow {
    transform: rotate(180deg);
}

.topbar-user-menu-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.topbar-user-menu-avatar {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
    background: #eef1f8;
}

.topbar-user-menu-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topbar-user-menu-header strong {
    display: block;
    color: #29324a;
    font-size: 11px;
    font-weight: 800;
}

.topbar-user-menu-header small {
    display: block;
    max-width: 190px;
    margin-top: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #9299a7;
    font-size: 9px;
}

.topbar-user-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    color: #41495c;
    transition: .2s ease;
}

.topbar-user-menu .dropdown-item:hover {
    background: #f5f7fb;
    color: #3d4d7d;
}

.topbar-user-menu .menu-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 8px;
    background: #eef1f8;
    color: #3d4d7d;
    font-size: 14px;
}

.topbar-user-menu .dropdown-item>span:nth-child(2) {
    display: flex;
    flex-direction: column;
    flex: 1;
    line-height: 1.3;
}

.topbar-user-menu .dropdown-item strong {
    color: #41495c;
    font-size: 10px;
    font-weight: 700;
}

.topbar-user-menu .dropdown-item small {
    margin-top: 2px;
    color: #9aa1ae;
    font-size: 8px;
}

.topbar-user-menu .menu-arrow {
    color: #b3b8c2;
    font-size: 9px;
}

.topbar-user-menu .logout-item {
    color: #dc3545;
}

.topbar-user-menu .logout-item .menu-icon {
    background: #fff1f2;
    color: #dc3545;
}

.topbar-user-menu .logout-item strong {
    color: #dc3545;
}

.topbar-user-menu .logout-item:hover {
    background: #fff5f5;
    color: #dc3545;
}

@media (max-width: 767px) {

    .topbar-user-info {
        display: none;
    }

    .topbar-user-toggle {
        padding: 3px;
        background: transparent;
    }

    .topbar-user-arrow {
        display: none;
    }

    .topbar-user-menu {
        right: 0;
        left: auto;
        min-width: 270px;
    }

    @media (max-width: 767px) {

        .topbar-user-menu {
            top: calc(100% + 7px);
            right: 0;
            width: 270px;
            min-width: 270px;
        }

        .topbar-user-info {
            display: none;
        }

        .topbar-user-arrow {
            display: none;
        }
    }
}