  .outex {
        background: #081b5e;
        font-weight: bold;
        line-height: 18px;
        margin: auto;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-radius: 4px;
        color: #37a3fe;
    }
    .choose-section h1 {
    font-size: 32px;
    font-weight: 700;
    color:#2ea9f3d4;
    line-height: 1.3;
}

.choose-section p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
}

.choose-btn a {
    display: inline-block;
    padding: 12px 22px;
    background: #032975;
    color: #fff !important;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.choose-btn a:hover {
    background: #ff9c07;
    color: #032975 !important;
}

.choose-thumb img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.15);
}
.roadmap-wrapper {
    position: relative;
    margin: 50px auto;
    max-width: 800px;
}
.roadmap-item {
    position: relative;
    padding: 20px 30px;
    border-left: 3px solid #1e53a1;
    margin-bottom: 30px;
}
.roadmap-item:last-child {
    margin-bottom: 0;
}
.roadmap-dot {
    position: absolute;
    left: -12px;
    top: 25px;
    width: 20px;
    height: 20px;
    background: #1e53a1;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(30, 83, 161, 0.3);
}
.roadmap-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2093d6;
    margin-bottom: 8px;
}
.roadmap-content p {
    font-size: 15px;
    color: #fff;
    margin: 0;
    line-height: 1.6;
}
@media screen and (max-width: 768px) {
    .roadmap-item {
        padding: 15px 20px;
    }
    .roadmap-content h3 {
        font-size: 18px;
    }
}
.faq-wrapper {
    max-width: 800px;
    margin: 40px auto;
}
.faq-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.faq-item:hover {
    transform: translateY(-3px);
}
.faq-question {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    outline: none;
    padding: 18px 20px;
    font-size: 17px;
    font-weight: 600;
    color: #1e53a1;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question .icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    padding: 0 20px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer p {
    margin: 15px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #027dc7;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 20px;
}
.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    color: #d32f2f;
}
@media screen and (max-width: 768px) {
    .faq-question {
        font-size: 16px;
        padding: 15px;
    }
    .faq-answer p {
        font-size: 14px;
    }
}
