.map-container{
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    float: left;
    padding: 30px;
    width: 500px;
    height: 400px;
}
.map-container img{}
.map_title{
    color: #1a3a8f;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: Poppins SemiBold;
}
.map_tip{
    margin-top: 30px;
    padding: 15px;
    background-color: #f1f7ff;
    border-radius: 5px;
}
.map_tip p{}
.map_tip p i{
    color: #1a3a8f;
    margin-right: 10px;
}
.info-cards{
    float: right;
    width: 610px;
}
.info-card{
    background-color: white;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    margin-bottom: 20px;
}
.infor_card_img{
    float: left;
    width: 42px;
    text-align: center;
}
.infor_card_img i{
    font-size: 2rem;
    color: #1a3a8f;
    margin-bottom: 15px;
}
.info_card_right{
    float: right;
    width: 524px;
}
.info_card_right h3{
    color: #1a3a8f;
    margin-bottom: 8px;
    font-size: 18px;
    font-family: Poppins SemiBold;
}
.info_card_right p{
    line-height: 26px;
}

/* Transportation Guide */
.transport-guide {
    background-color: #f1f7ff;
    padding: 50px 0;
    margin: 60px 0;
}

.transport-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.transport-step p{
    line-height: 25px;
}
.transport-step {
    background-color: white;
    padding: 15px 12px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #1a3a8f;
    color: white;
    border-radius: 50%;
    line-height: 40px;
    margin-bottom: 15px;
    font-weight: bold;
}
.transport-step h3{
    font-family: Poppins SemiBold;
    font-size: 17px;
    padding-bottom: 8px;
}
/* FAQ Section */
.faq-container {
    max-width: 1000px;
}

.faq-item {
    background-color: white;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    font-weight: bold;
    background-color: #f1f7ff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 300px;
}
/*Quick Btn*/
.quick_btn_ul{}
.quick_btn_ul li{
    border: 2px solid #f9c89c;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
    float: left;
    margin-right: 23px;
    width: 575px;
    box-sizing: border-box;
}
.quick_title{
    font-family: 'Poppins SemiBold';
    font-size: 18px;
}
.quick_info{
    font-size: 14px;
    color: #666666;
    padding-bottom: 8px;
    padding-top: 4px;
    line-height: 27px;
}
.quick_btn{background: #f0801a;color: #fff;line-height: 40px;font-size: 16px;display: inline-block;padding: 0px 12px;border-radius: 4px;}