/* Hero Section */
.container{
    padding:0;
}
.hero {
    display: flex;
    justify-content: space-between;
    margin:20px auto 65px;
}

.hero-content {
    flex: 1;
    margin:148px 0 0 196px;
    color:#000000;
    animation: slideIn 1s ease-out 0.3s forwards;
    opacity: 0; /* 可选：初始完全透明 */
}
.hero-content .container{
    padding:0;
}
/* 定义滑入动画关键帧 */
@keyframes slideIn {
    from {
        transform: translateX(-100%); /* 起点：左侧视口外 */
        opacity: 0;
    }
    to {
        transform: translateX(0); /* 终点：原始位置 */
        opacity: 1;
    }
}
.hero-content .text-1{
    color:#000000;
    font-size:60px;
    font-weight: 600;
    line-height: 73px;
}

.hero-images{
    width: 330px;
    margin-right: 117px;
}
.hero-images img {
    width: 100%;
}

/* about-us Section */
.faq {
    padding:50px;
    background: #FFE8D5;
    margin-bottom: 36px;
    border-radius: 8px;
}
.faq-last{
    margin-bottom: 140px;
}
.faq  h1{
    font-size:54px;
    line-height: 65px;
    margin-bottom: 68px;
    font-weight: 700;
}
.faq .content{
    font-size:18px;
    color:#061C08;
}
.faq .content .faq-item{
    margin-bottom: 16px;
    background: #FFFFFF;
    border: 0.5px solid #E2E9EA;
    border-radius: 6px;
}
.faq .content .faq-item ._title {
    cursor: pointer;
    position: relative;
    font-size: 18px;
    color: #16505A;
    padding: 13.5px 12px;
    font-weight: 700;
    line-height: 21px;
    display: flex;
    align-items: center;
}
.faq .content .faq-item ._title::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s
    ease;
}
.faq .content .faq-item article{
    padding:12px 12px 24px;
    color:rgba(22,80,90,0.6);
    font-size:15px;
    border-top:0.5px solid #E2E9EA;
    display: none;
}
.faq .content .faq-item.active article{
    display: block;
}
.faq .content .faq-item.active ._title::after {
    transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 768px) {
    .hero{
        flex-flow: column-reverse;
        margin-top: 25px;
        align-items: center;
    }
    .hero-content{
        margin:30px 20px 0;
    }
    .hero-images{
        width: 40%;
        margin:0;
    }
    .hero-content .hero-content-item{
        display: block;
    }
    .hero-content .text-1{
        font-size:20px;
        margin-bottom: 10px;
        line-height: 30px;
        padding:0;
    }
    .faq{
        border-radius: 0;
        padding: 30px 20px;
    }
    .faq h1 {
        font-size: 20px;
        line-height: 40px;
        margin-bottom: 25px;
    }
    .faq .content .faq-item ._title{
        font-size: 16px;
    }
    .faq-last{
        margin-bottom: 50px;
    }
}