:root {
    --primary: #081f4d;
    --secondary: #f7b500;
    --heading: #10284b;
    --text: #616d7f;
}

body {
    font-family: Inter, sans-serif;
    color: var(--heading);
    background: #f5f7fb;
}

.navbar-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    padding: 18px 0;
    transition: .3s ease;
    z-index: 999;
}

.navbar-logo img {
    height: 50px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 5px 10px;
}

.navbar-section .navbar-nav {
    gap: 8px;
}

.navbar-section .nav-link {
    color: #fff;
    font-weight: 500;
    padding: 12px 16px;
    position: relative;
}

.navbar-section .nav-link:hover {
    color: #fff;
}

.navbar-section .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: var(--secondary);
    border-radius: 30px;
}

.navbar-section .navbar-nav .nav-link.active,
.navbar-section .navbar-nav .nav-link.show {
    color: #fff !important;
}

.navbar-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--secondary);
    color: #111;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    transition: .3s;
}

.navbar-register-btn:hover {
    color: #111;
    transform: translateY(-2px);
}

.hero-section {
    padding: 170px 0 140px;
    position: relative;
    overflow: hidden;
    background: url("/images/hero-1.webp") center/cover no-repeat;
}

.hero-title {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 28px;
}

.hero-title span {
    color: var(--secondary);
}

.hero-description {
    color: #000000;
    line-height: 1.9;
    margin-bottom: 36px;
}

.hero-action {
    display: flex;
    gap: 16px;
}

.hero-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--secondary);
    color: #111;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 700;
}

.hero-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--primary);
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 700;
}

.hero-primary-btn:hover {
    color: #111;
}

.hero-secondary-btn:hover {
    color: #fff;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    display: block;
}

.feature-section {
    margin-top: -75px;
    position: relative;
    z-index: 5;
}

.feature-wrapper {
    background: var(--primary);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
}

.feature-item {
    display: flex;
    gap: 18px;
    padding: 28px;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.feature-last {
    border-right: none;
}

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    flex-shrink: 0;
}

.feature-item .subtitle {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-item p {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media(max-width:991px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-action {
        flex-direction: column;
    }

    .hero-image {
        margin-top: 50px;
    }

    .feature-section {
        margin-top: 40px;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .feature-last {
        border-bottom: none;
    }

    .navbar-register-btn {
        margin-top: 20px;
    }

    .navbar-collapse {
        padding-top: 20px;
    }
}

@media(max-width:1199.98px) {
    .navbar-section .nav-link {
        padding: 12px 10px;
        font-size: 14px;
    }

    .navbar-register-btn {
        padding: 13px 22px;
    }

    .hero-section {
        padding: 160px 0 120px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-description {
        font-size: 16px;
    }

    .feature-item {
        padding: 22px;
    }

    .feature-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }
}

@media(max-width:991.98px) {
    .navbar-section {
        padding: 14px 0;
    }

    .navbar-collapse {
        margin-top: 20px;
        padding: 20px;
        border-radius: 14px;
        background: var(--primary);
    }

    .navbar-section .navbar-nav {
        gap: 0;
    }

    .navbar-section .nav-link {
        padding: 14px 0;
    }

    .navbar-register-btn {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .hero-section {
        padding: 140px 0 80px;
        text-align: center;
        background: #ffffff;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        max-width: 650px;
        margin: 0 auto 36px;
    }

    .hero-action {
        justify-content: center;
    }

    .hero-image {
        margin-top: 60px;
    }

    .hero-image img {
        max-width: 700px;
        margin: auto;
    }

    .feature-section {
        margin-top: 40px;
    }

    .feature-wrapper {
        border-radius: 18px;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .feature-last {
        border-bottom: none;
    }
}

@media(max-width:767.98px) {
    .navbar-logo img {
        height: 42px;
    }

    .navbar-register-btn {
        width: 100%;
    }

    .hero-section {
        padding: 130px 0 60px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.25;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-action {
        flex-direction: column;
        gap: 14px;
    }

    .hero-primary-btn,
    .hero-secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        margin-top: 40px;
    }

    .feature-wrapper {
        border-radius: 16px;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 24px;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 10px;
    }

    .feature-item .subtitle {
        font-size: 18px;
    }

    .feature-item p {
        font-size: 14px;
    }
}

@media(max-width:575.98px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-primary-btn,
    .hero-secondary-btn {
        padding: 15px 18px;
        font-size: 15px;
    }

    .feature-item {
        padding: 24px 20px;
    }

    .feature-icon {
        width: 58px;
        height: 58px;
        font-size: 22px;
    }
}

.about-section {
    background: #fff;
}

.about-image {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.about-image:hover img {
    transform: scale(1.04);
}

.section-subtitle {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #1b2b5d;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.section-description {
    color: #4d5562;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    color: #4d5562;
    font-size: 17px;
    line-height: 1.6;
}

.about-list li i {
    color: #FDB515;
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

@media (max-width:991px) {

    .section-subtitle {
        font-size: 24px;
    }

    .section-description {
        font-size: 16px;
    }

    .about-list li {
        font-size: 16px;
    }

}

@media (max-width:767px) {

    .about-section {
        padding: 70px 0;
    }

    .about-image {
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 22px;
    }

}

.about-section {
    background: #fafbfd;
}

.section-subtitle {
    position: relative;
    padding-left: 18px;
}

.section-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 5px;
    height: 34px;
    background: #1B2B5D;
    border-radius: 50px;
}

.program-section {
    background: #fff;
}

.program-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.program-heading span {
    font-size: 28px;
    font-weight: 800;
    color: #162B5B;
    text-transform: uppercase;
}

.program-heading::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #FDB515;
    border-radius: 50px;
}

.program-card {
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1px solid #e9edf3;
    border-radius: 18px;
    padding: 22px;
    transition: .35s;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.program-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.program-icon i {
    color: #fff;
    font-size: 32px;
}

.bg-navy {
    background: #132D61;
}

.bg-gold {
    background: #FDB515;
}

.program-content .subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #162B5B;
    margin-bottom: 10px;
}

.program-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

@media(max-width:991px) {

    .program-heading span {
        font-size: 24px;
    }

}

@media(max-width:767px) {

    .program-heading {
        margin-bottom: 25px;
    }

    .program-heading span {
        font-size: 22px;
    }

    .program-card {
        padding: 20px;
    }

}

.advantage-section {
    background: #fff;
}

.advantage-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.advantage-heading h4 {
    font-size: 28px;
    font-weight: 800;
    color: #162B5B;
    text-transform: uppercase;
}

.advantage-heading::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #FDB515;
    border-radius: 50px;
}

.advantage-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    height: 100%;
    padding: 22px;
    background: #fff;
    border: 1px solid #E8EDF5;
    border-radius: 18px;
    transition: .35s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .3s;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.08);
}

.advantage-icon i {
    font-size: 30px;
    color: #fff;
}

.bg-navy {
    background: #132D61;
}

.bg-gold {
    background: #FDB515;
}

.advantage-content .subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #162B5B;
    margin-bottom: 10px;
}

.advantage-content p {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

@media (max-width:991px) {

    .advantage-heading h4 {
        font-size: 24px;
    }

}

@media (max-width:767px) {

    .advantage-heading {
        margin-bottom: 25px;
    }

    .advantage-heading h4 {
        font-size: 22px;
    }

    .advantage-card {
        padding: 20px;
    }

}

.information-section {
    background: #fff;
    overflow: hidden;
}

.information-content {
    margin-left: auto;
    padding: 80px 60px 80px 15px;
}

.information-content h2 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    color: #142B5F;
    margin-bottom: 28px;
}

.information-content h2 span {
    color: #FDB515;
}

.information-divider {
    width: 70px;
    height: 4px;
    background: #FDB515;
    border-radius: 50px;
    margin-bottom: 35px;
}

.information-content p {
    font-size: 17px;
    line-height: 2;
    color: #4B5563;
    margin-bottom: 24px;
}

.information-image {
    position: relative;
    height: 100%;
}

.information-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.information-section {
    background: #fff;
}

.information-wrapper {
    background: #fff;
    border: 1px solid #E7ECF5;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(18, 43, 93, .06);
}


.information-content h2 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.08;
    color: #162B5B;
    margin-bottom: 25px;
}

.information-content h2 span {
    display: block;
    color: #FDB515;
}

.information-divider {
    width: 60px;
    height: 4px;
    border-radius: 30px;
    background: #FDB515;
    margin-bottom: 30px;
}

.information-content p {
    font-size: 17px;
    line-height: 1.95;
    color: #4B5563;
    margin-bottom: 24px;
}

.information-image {
    height: 100%;
}

.information-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.information-section {
    background: #fff;
    overflow: hidden;
}

.information-subtitle {
    display: inline-block;
    color: #FDB515;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.information-content h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.08;
    color: #142B5F;
    margin-bottom: 25px;
}

.information-content h2 span {
    display: block;
    color: #FDB515;
}

.information-divider {
    width: 65px;
    height: 4px;
    border-radius: 50px;
    background: #FDB515;
    margin-bottom: 30px;
}

.information-content p {
    font-size: 17px;
    line-height: 2;
    color: #4B5563;
    margin-bottom: 22px;
}

.information-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
}

.information-image img {
    width: 100%;
    max-width: 540px;
    height: auto;
    display: block;
}

@media(max-width:991px) {
    .information-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .information-content h2 {
        font-size: 42px;
    }

    .information-image {
        justify-content: center;
    }

    .information-image img {
        max-width: 420px;
    }
}

@media(max-width:767px) {
    .information-section {
        padding: 60px 0;
    }

    .information-content h2 {
        font-size: 32px;
    }

    .information-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .information-image img {
        max-width: 320px;
    }
}

.product-section {
    background: #fff;
}

.product-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.product-heading h3 {
    font-size: 28px;
    font-weight: 800;
    color: #162B5B;
    text-transform: uppercase;
}

.product-heading::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #FDB515;
    border-radius: 50px;
}

.product-card {
    height: 100%;
    background: #fff;
    border: 1px solid #E8EDF5;
    border-radius: 18px;
    overflow: hidden;
    transition: .35s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.product-image {
    position: relative;
    overflow: hidden;
    padding: 12px;
}

.product-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    transition: .4s;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* Body */

.product-body {
    padding: 0 22px 24px;
}

.product-body .product-title {
    font-size: 22px;
    font-weight: 700;
    color: #162B5B;
    margin-bottom: 15px;
}

.product-body ul {
    padding-left: 18px;
    margin-bottom: 20px;
}

.product-body li {
    color: #666;
    margin-bottom: 8px;
    font-size: 15px;
}

.btn-product {
    display: inline-block;
    padding: 10px 22px;
    border: 2px solid #FDB515;
    color: #FDB515;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: .3s;
}

.btn-product:hover {
    background: #FDB515;
    color: #fff;
}

@media(max-width:991px) {

    .product-heading h3 {
        font-size: 24px;
    }

}

@media(max-width:767px) {

    .product-heading h3 {
        font-size: 22px;
    }

    .product-body .product-title {
        font-size: 20px;
    }

}

.why-us {
    background: #fff;
}

.why-us-wrapper {
    background: #0F234B;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.why-us-title {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    padding: 35px 20px 25px;
    margin: 0;
}

.why-us-item {
    text-align: center;
    padding: 30px 22px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    transition: .35s;
    height: 100%;
}

.why-us-item:hover {
    background: rgba(255, 255, 255, .05);
}

.why-us-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #17356E;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.why-us-item:hover .why-us-icon {
    transform: translateY(-5px) scale(1.08);
    background: #FDB515;
}

.why-us-icon i {
    color: #FDB515;
    font-size: 34px;
    transition: .3s;
}

.why-us-item:hover .why-us-icon i {
    color: #fff;
}

.why-us-item .subtitle {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-us-item p {
    color: rgba(255, 255, 255, .75);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

@media(max-width:991px) {

    .why-us-title {
        font-size: 26px;
    }

    .why-us-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

}

@media(max-width:767px) {

    .why-us-title {
        font-size: 22px;
        padding: 25px 15px;
    }

    .why-us-item {
        padding: 25px 18px;
    }

    .why-us-item .subtitle {
        font-size: 16px;
    }

    .why-us-item p {
        font-size: 14px;
    }

    .why-us-icon {
        width: 60px;
        height: 60px;
    }

    .why-us-icon i {
        font-size: 28px;
    }

}

.road-to-success {
    background: #fff;
}

.road-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 60px;
}

.road-header h5 {
    font-size: 30px;
    font-weight: 800;
    color: #162B5B;
    margin-bottom: 15px;
}

.road-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.road-item {
    position: relative;
    text-align: center;
    padding: 0 18px;
}

.road-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.road-icon i {
    color: #fff;
    font-size: 34px;
}

.road-icon.navy {
    background: #132D61;
}

.road-icon.gold {
    background: #FDB515;
}

.road-item:hover .road-icon {
    transform: translateY(-8px) scale(1.08);
}

.road-arrow {
    position: absolute;
    top: 25px;
    right: -10px;
    color: #C8CCD3;
    font-size: 34px;
}

.row>.col:last-child .road-arrow {
    display: none;
}

.road-item .subtitle {
    color: #162B5B;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.road-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width:991px) {

    .road-header {
        margin-bottom: 40px;
    }

    .road-header h5 {
        font-size: 26px;
    }

    .road-item {
        margin-bottom: 45px;
    }

    .road-arrow {
        display: none;
    }

}

@media (max-width:767px) {

    .road-header h5 {
        font-size: 22px;
    }

    .road-header p {
        font-size: 15px;
    }

    .road-icon {
        width: 68px;
        height: 68px;
    }

    .road-icon i {
        font-size: 28px;
    }

    .road-item .subtitle {
        font-size: 16px;
    }

}

.description-section {
    background: #fff;
}

.description-wrapper {
    background: #fff;
    border: 1px solid #E7ECF5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(20, 43, 95, .06);
}

.description-content {
    padding: 60px;
}

.description-content h3 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: #142B5F;
    margin-bottom: 24px;
}

.description-content h3 span {
    display: block;
    color: #FDB515;
}

.description-divider {
    width: 60px;
    height: 4px;
    background: #FDB515;
    border-radius: 50px;
    margin-bottom: 28px;
}

.description-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #4B5563;
    margin-bottom: 24px;
}

.description-image {
    height: 100%;
}

.description-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.description-section {
    background: #fff;
}

.description-wrapper {
    background: #fff;
    border: 1px solid #E7ECF5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(20, 43, 95, .06);
}

.description-content h3 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: #142B5F;
    margin-bottom: 24px;
}

.description-content h3 span {
    display: block;
    color: #FDB515;
}

.description-divider {
    width: 60px;
    height: 4px;
    background: #FDB515;
    border-radius: 50px;
    margin-bottom: 28px;
}

.description-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #4B5563;
    margin-bottom: 24px;
}

.description-image {
    height: 100%;
}

.description-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width:991px) {
    .description-content {
        padding: 45px;
    }

    .description-content h3 {
        font-size: 40px;
    }
}

@media (max-width:767px) {
    .description-section {
        padding: 60px 0;
    }

    .description-wrapper {
        border-radius: 20px;
    }

    .description-content {
        padding: 28px;
    }

    .description-content h3 {
        font-size: 30px;
        line-height: 1.2;
    }

    .description-content p {
        font-size: 16px;
        line-height: 1.8;
    }
}

.faq-section {
    background: #fff;
}

.faq-content h4 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.08;
    color: #132D61;
}

.faq-content h4 br {
    display: block;
}

.faq-subtitle {
    color: #FDB515;
    font-weight: 700;
    letter-spacing: 1px;
}

.faq-divider {
    width: 60px;
    height: 4px;
    background: #FDB515;
    margin: 25px 0 30px;
    border-radius: 50px;
}

.faq-content>p {
    color: #4B5563;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 40px;
}

.faq-contact {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid #E7ECF5;
    box-shadow: 0 10px 35px rgba(18, 43, 93, .05);
}

.faq-contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #F4F8FF;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #132D61;
    font-size: 34px;
    flex-shrink: 0;
}

.faq-contact .subtitle {
    font-weight: 700;
    color: #132D61;
}

.faq-contact p {
    margin-bottom: 18px;
}

.faq-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 2px solid #FDB515;
    border-radius: 10px;
    color: #FDB515;
    font-weight: 700;
    text-decoration: none;
}

.faq-accordion .accordion-item {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
}

.faq-accordion .accordion-button {
    font-weight: 700;
    color: #132D61;
    padding: 24px;
    box-shadow: none;
    background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: #132D61;
}

.faq-accordion .accordion-body {
    padding: 0 24px 24px;
    color: #666;
    line-height: 1.8;
}

@media(max-width:991px) {
    .faq-content {
        margin-bottom: 30px;
    }

    .faq-content h4 {
        font-size: 40px;
    }
}

@media(max-width:767px) {
    .faq-content h4 {
        font-size: 30px;
    }

    .faq-contact {
        flex-direction: column;
        text-align: center;
    }

    .faq-button {
        width: 100%;
        justify-content: center;
    }

    .faq-accordion .accordion-button {
        padding: 18px;
        font-size: 16px;
    }
}

.cta-section {
    background: #fff;
}

.cta-wrapper {
    background: linear-gradient(135deg, #0D2145, #18376E);
    border-radius: 18px;
    padding: 28px 40px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 22px;
}

.cta-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon i {
    font-size: 42px;
    color: #FDB515;
}

.cta-text h5 {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-text p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 56px;
    background: #FDB515;
    color: #162B5B;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.btn-cta:hover {
    background: #fff;
    color: #162B5B;
    transform: translateY(-2px);
}

@media (max-width:991px) {

    .cta-wrapper {
        padding: 28px;
        text-align: center;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        margin-bottom: 25px;
    }

    .cta-text h5 {
        font-size: 28px;
    }

}

@media (max-width:767px) {

    .cta-section {
        padding: 60px 0;
    }

    .cta-wrapper {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .cta-icon {
        width: 64px;
        height: 64px;
    }

    .cta-icon i {
        font-size: 36px;
    }

    .cta-text h5 {
        font-size: 24px;
        line-height: 1.3;
    }

    .cta-text p {
        font-size: 16px;
        line-height: 1.7;
    }

    .btn-cta {
        width: 100%;
        min-width: unset;
        height: 54px;
        font-size: 16px;
    }

}

.footer-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0 35px;
    background: linear-gradient(135deg, #081A3E, #16356A);
}

.footer-logo {
    background-color: #ffffff;
    width: 270px;
    margin-bottom: 30px;
    border-radius: 10px;
    padding: 5px 10px;
}

.footer-description {
    color: rgba(255, 255, 255, .82);
    line-height: 2;
    font-size: 17px;
    max-width: 320px;
    margin-bottom: 35px;
}

.footer-social {
    display: flex;
    gap: 18px;
}

.footer-social a {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transition: .3s;
}

.footer-social a:hover {
    background: #FDB515;
    color: #132D61;
}

.footer-title {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 40px;
    position: relative;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 46px;
    height: 4px;
    background: #FDB515;
}

.footer-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-menu li {
    margin-bottom: 22px;
}

.footer-menu a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    transition: .3s;
    font-size: 18px;
}

.footer-menu a:hover {
    color: #FDB515;
    padding-left: 8px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.8;
    font-size: 18px;
}

.footer-contact i {
    color: #fff;
    font-size: 20px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 60px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, .75);
    margin: 0;
    font-size: 16px;
}

@media(max-width:991px) {
    .footer-title {
        margin-top: 15px;
        font-size: 26px;
    }

    .footer-logo {
        width: 220px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    .footer-section::after {
        display: none;
    }
}

@media(max-width:767px) {
    .footer-section {
        padding: 70px 0 30px;
    }

    .footer-description {
        font-size: 16px;
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-title {
        font-size: 22px;
    }

    .footer-menu a,
    .footer-contact li {
        font-size: 16px;
    }
}

.whatsapp-sticky {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 14px 6px 8px;
    background: linear-gradient(180deg, #45C756, #2DA53E);
    border: 4px solid #fff;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    text-decoration: none;
    transition: .25s;
}

.whatsapp-sticky:hover {
    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon i {
    font-size: 20px;
    color: #fff;
}

.whatsapp-text {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width:767px) {
    .whatsapp-sticky {
        right: 12px;
        bottom: 12px;
        left: auto;
        width: 34vw;
        min-width: 130px;
        max-width: 150px;
        padding: 5px 10px 5px 6px;
        gap: 6px;
        border-width: 3px;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }

    .whatsapp-icon i {
        font-size: 18px;
    }

    .whatsapp-text {
        font-size: 13px;
    }
}