h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    font-family: InterBold;
}

@media(max-width:767px) {
    h2 {
        font-size: 24px;
    }
}

.banner-desc-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1130px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 35px;
}

.banner-desc-box-title {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

.banner-desc-box-title p {
    padding: 0;
    margin: 0;
}

.banner-desc-box-content {
    color: #fff;
    font-size: 18px;
}

@media(min-width:768px) and (max-width:1365px) {
    .carousel-item {
        height: 385px;
    }

    .carousel-item>img {
        width: 100%;
        height: 385px;
        object-fit: cover;
    }

    .banner-desc-box {
        margin-top: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .banner-desc-box-title h1 {
        font-size: 28px;
    }

    .banner-desc-box-content {
        font-size: 16px;
    }
}

@media(max-width:767px) {
    .banner-desc-box {
        padding: 0 15px;
    }

    .banner-desc-box-title {
        font-size: 24px;
    }

    .banner-desc-box-content {
        font-size: 14px;
    }
}


/* Breadcrumb Navigation Styles */
.breadcrumb-nav {
    padding: 20px 0;
    background-color: #fff;
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 16px;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: #999;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #222;
}

.breadcrumb-item.active {
    color: #222;
    font-weight: 500;
}

.home-icon {
    display: flex;
    align-items: center;
}

.home-icon img {
    width: 16px;
    height: 16px;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .breadcrumb-nav {
        padding: 15px 0;
    }

    .breadcrumb-container {
        padding: 0 15px;
    }

    .breadcrumb-item {
        font-size: 12px;
    }

    .breadcrumb-item:not(:last-child)::after {
        margin-left: 8px;
    }

    .home-icon img {
        width: 14px;
        height: 14px;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    display: none;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

/* General Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

.pagination-container {
    padding: 0 15px;
}

.btn-about-us {
    background: #fff;
    color: #000;
    padding: 12px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.btn-about-us:hover {
    background: #FF99D3;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

.product-section {
    padding: 100px 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

@media(max-width:767px) {
    .product-section {
        padding: 50px 15px;
    }
}

.product-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.product-container p {
    font-size: 18px;
}

@media(min-width:768px) and (max-width:1365px) {
    .product-section {
        padding: 50px 15px;
    }

    .product-container h2 {
        font-size: 28px;
    }

    .product-container p {
        font-size: 16px;
    }
}

@media(max-width:767px) {
    .product-container p {
        font-size: 16px;
    }
}

.pls-product-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

@media(min-width:768px) and (max-width:1365px) {
    .pls-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:767px) {
    .pls-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pls-product-card {
    background-color: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pls-product-card:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); */
}

.pls-image-placeholder {
    width: 100%;
    height: 220px;
    /* 根据实际图片比例调整 */
    background-color: #e9ecef;
    /* 占位符背景色 */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #adb5bd;
    font-size: 14px;
}

@media(max-width:767px) {
    .pls-image-placeholder {
        height: 160px;
    }
}

/* 如果有图片，可以替换为以下样式 */

.pls-product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

@media(max-width:767px) {
    .pls-product-card img {
        height: 160px;
    }
}


.pls-product-name {
    padding: 15px;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    margin: 0;
    line-height: 1.4;
    height: 60px;
    /* 确保标题区域有一定高度 */
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media(min-width:768px) and (max-width:1365px) {
    .pls-product-name {
        font-size: 14px;
        height: 55px;
    }
}

@media(max-width:767px) {
    .pls-product-name {
        font-size: 14px;
        height: 55px;
    }
}

.pls-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.pls-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pls-pagination li a,
.pls-pagination li span {
    display: block;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #555;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.pls-pagination li a:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
}

.pls-pagination li a.active {
    background-color: #e50012;
    color: #fff;
    border-color: #e50012;
    font-weight: bold;
}

.pls-pagination li span {
    border: none;
    padding: 10px 5px;
}

.pls-pagination .next {
    display: flex;
    align-items: center;
}

.pagination-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid #555;
    /* 默认箭头颜色 */
    margin-left: 8px;
    transition: border-left-color 0.3s ease;
}

.pls-pagination li a.active .pagination-arrow,
.pls-pagination li a:hover .pagination-arrow {
    /* border-left-color: #e50012; */
    /* 如果active时也需要变色 */
}

.pls-pagination li a.active .pagination-arrow {
    border-left-color: #fff;
    /* Active 状态下箭头颜色 */
}


.class-title {
    font-size: 24px;
    font-family: InterBold;
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 40px 15px;
}

.class-title h2 {
    text-align: center;
}

@media(min-width:768px) and (max-width:1365px) {
    .class-title h2 {
        font-size: 28px;
    }
}

/* Process Grid */
.process-section {
    width: 100%;
    padding: 70px 0;
    background-color: #f7f7f7
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1680px;
    margin: auto;
}

.process-item {
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.process-item:hover {}

.process-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.process-icon svg {
    color: #333;
    transition: all 0.3s ease;
}

.process-icon img {
    width: 38px;
}


.process-step {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}

.process-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    flex-grow: 1;
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .process-section {
        padding: 80px 0;
    }

    .process-header {
        margin-bottom: 60px;
    }

    .process-title {
        font-size: 36px;
    }

    .process-description {
        font-size: 16px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .process-item {
        padding: 30px 25px;
    }

    .process-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .process-icon svg {
        width: 32px;
        height: 32px;
    }

    .process-step {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .process-text {
        font-size: 14px;
    }
}

/* Mobile Styles (max-width: 767px) */
@media (max-width: 767px) {
    .process-section {
        padding: 0px 0;
    }

    .process-section .container {
        padding: 0 15px;
    }

    .process-header {
        margin-bottom: 50px;
    }

    .process-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .process-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .process-description {
        font-size: 15px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .process-item {
        padding: 10px;
        text-align: center;
    }

    .process-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 20px;
    }

    .process-icon svg {
        width: 28px;
        height: 28px;
    }

    .process-step {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .process-text {
        font-size: 14px;
        line-height: 1.5;
    }
}

.work-box-section {
    padding: 45px 20px 120px;
}

@media(min-width:768px) and (max-width:1365px) {
    .work-box-section {
        padding: 45px 15px;
    }
}

@media(max-width:767px) {
    .work-box-section {
        padding: 0px 15px;
    }
}

.work-item {
    border-radius: 12px;
}

.work-list-box-nav-item-content {
    width: 100%;
    min-height: 33px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 15px;
}

@media(min-width:768px) and (max-width:1365px) {
    .work-list-box-nav-item-content {
        min-height: 0;
    }
}

@media(max-width:767px) {
    .work-list-box-nav-item-content {
        min-height: 0px;
    }
}

.work-list-box-nav-item-content p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding-top 0.3s ease-in-out;
}

.work-list-box-nav-item-active p {
    max-height: 200px;
    opacity: 1;
    padding-top: 8px;
    font-size: 18px;
}

@media(min-width:768px) and (max-width:1365px) {
    .work-list-box-nav-item-active p {
        font-size: 16px;
    }
}

.work-list-box-nav-item::before {
    content: '';
    margin-left: auto;
    /* font-size: 20px; */
    font-weight: bold;
    width: 2px;
    height: 14px;
    background-color: #000;
    color: #000;
    line-height: 1;
    transition: transform 0.3s ease-in-out;
    border-radius: 5px;
}

.work-list-box-nav-item-active::before {
    content: '';
    transform: rotate(90deg);
    /* width:16px; */
    /* height:auto; */
    /* background-color: transparent; */
}

.work-box-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.work-box-container h2 {
    font-size: 40px;
    font-family: InterBold;
    color: #4b5956;
    margin-bottom: 10px;
    padding-bottom: 20px;
}

@media(max-width:767px) {
    .work-box-container h2 {
        font-size: 28px;
    }
}

.work-box-container p {
    font-size: 16px;
    color: #999;
    font-weight: 700;
}

.work-list-box-nav-number {
    font-size: 22px;
    font-family: InterBold;
    color: #4e5956;
    width: 30px;
    display: flex;
    align-items: start;
}

.work-box {
    width: 100%;
    max-width: 1360px;
    margin: 50px auto 0px;
}

.work-box>h2 {
    text-align: center;
}

.work-box>p {
    text-align: center;
    font-size: 18px;
}

@media(min-width:768px) and (max-width:1365px) {
    .work-box>h2 {
        font-size: 28px;
    }

    .work-box>p {
        font-size: 16px;
    }
}

@media(max-width:767px) {
    .work-box>p {
        font-size: 14px;
    }
}

.work-title {
    font-size: 32px;
    width: 100%;
    max-width: 1360px;
    margin: auto;
    text-align: center;
}

.work-title h2 {
    padding-bottom: 50px;
}

.work-subtitle {
    font-size: 18px;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.work-list-box {
    margin-top: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 50px;
}

@media(max-width:767px) {
    .work-list-box {
        gap: 20px;
    }
}

.work-list-box-left {
    width: 100%;
    min-width: 50%;
}

.work-list-box-left>p {
    font-size: 16px;
    color: #000;
    font-weight: 700;
}

.work-list-box-left h2 {
    font-size: 28px;
    padding-bottom: 20px;
}

@media (max-width: 767px) {
    .work-list-box-left h2 {
        text-align: center;
    }
}

.work-list-box-nav {
    width: 100%;
    min-width: 50%;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.work-list-box-nav-item {
    color: #8A8A8A;
    padding: 5px 0 0 0px;
    display: flex;
    justify-content: left;
    align-items: baseline;
    cursor: pointer;
    position: relative;
}

.work-list-box-nav-item h4 {
    color: #4e5956;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.work-list-box-nav-item-active h4 {
    color: #000;
}

.work-list-box-nav-item-line {
    width: 2px;
    height: 100%;
    background: #e9e9e9;
    position: absolute;
    left: 0;
    top: 0;
}

.work-list-box-nav-item-line-active {
    background: linear-gradient(to bottom, #0033A1 50%, #e9e9e9 50%);
    background-size: 100% 200%;
    animation: changeColor 5s forwards;
}


.work-list {
    overflow: hidden;
}

.work-item-title {
    position: absolute;
    bottom: 0px;
    padding: 20px;
    color: #FFFFFF;
    /*//添加一个渐变背景色，从透明到黑色*/
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
    width: 100%;
}

.work-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (min-width: 768px) and (max-width: 1365px) {
    .work-box {
        width: 100%;
        max-width: 1300px;
        margin: 50px auto 50px;
        padding: 0 15px;
    }

    .work-title {
        font-size: 24px;
        font-family: InterBold;
        width: 100%;
        max-width: 1300px;
        margin: auto;
        text-align: center;
    }

    .work-subtitle {
        font-size: 18px;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .work-list-box {
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .work-list-box-nav {
        width: 100%;
        min-width: 290px;
        display: flex;
        gap: 20px;
        flex-direction: column;
    }

    .work-list-box-nav-item {
        /*border-left: 2px #e9e9e9 solid;*/
        color: #848484;
        padding: 5px 0 0 10px;
        display: flex;
        justify-content: left;
        align-items: flex-start;
        cursor: pointer;
        position: relative;
    }

    .work-list-box-nav-item h4 {
        color: #848484;
        font-size: 16px;
        margin: 0;
    }

    .work-list-box-nav-item-active h4 {
        font-family: InterBold;
        color: #000000;
    }

    .work-list-box-nav-item-line {
        width: 2px;
        height: 100%;
        background: #e9e9e9;
        position: absolute;
        left: 0;
        top: 0;
    }

    .work-list-box-nav-item-line-active {
        background: linear-gradient(to bottom, #0033A1 50%, #e9e9e9 50%);
        background-size: 100% 200%;
        animation: changeColor 5s forwards;
    }


    .work-list {
        overflow: hidden;
    }

    .work-item-title {
        position: absolute;
        bottom: 0px;
        padding: 10px;
        color: #FFFFFF;
        /*//添加一个渐变背景色，从透明到黑色*/
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
        width: 100%;
    }

    .work-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    .work-box {
        width: 100%;
        max-width: 1300px;
        margin: 50px auto 0px;
    }

    .work-title {
        font-size: 24px;
        font-family: InterBold;
        width: 100%;
        max-width: 1300px;
        margin: auto;
        text-align: center;
        padding: 0 10px;
    }

    .work-subtitle {
        font-size: 18px;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        padding: 0 10px;
    }

    .work-list-box {
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        padding: 0;
    }

    .work-list-box-nav {
        width: 100%;
        display: flex;
        gap: 20px;
        flex-direction: column;
        padding: 0;
    }

    .work-list-box-nav-item {
        /*border-left: 2px #e9e9e9 solid;*/
        color: #848484;
        padding: 0;
        display: flex;
        justify-content: left;
        align-items: flex-start;
        cursor: pointer;
        position: relative;
    }

    .work-list-box-nav-item h4 {
        color: #848484;
        font-size: 16px;
        margin: 0;
    }

    .work-list-box-nav-item-active h4 {
        font-family: InterBold;
        color: #000000;
    }

    .work-list-box-nav-item-line {
        width: 2px;
        height: 100%;
        background: #e9e9e9;
        position: absolute;
        left: 0;
        top: 0;
    }

    .work-list-box-nav-item-line-active {
        background: linear-gradient(to bottom, #0033A1 50%, #e9e9e9 50%);
        background-size: 100% 200%;
        animation: changeColor 5s forwards;
    }


    .work-list {
        overflow: hidden;
        width: 100%;
        margin-top: 20px;
    }

    .work-item-title {
        position: absolute;
        bottom: 0px;
        padding: 20px;
        color: #FFFFFF;
        /*//添加一个渐变背景色，从透明到黑色*/
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
        width: 100%;
    }

    .work-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.customer-feedback-section {
    width: 100%;
}

@media(max-width:767px) {
    .customer-feedback-section {
        padding: 50px 15px;
    }
}

.customer-feedback-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media(max-width:767px) {
    .customer-feedback-container {
        padding: 0;
    }
}

.customer-feedback-container p {
    font-size: 18px;
}

.waterfall-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    /* 24px */
    margin-top: 4rem;
    /* 64px */
    max-height: 740px;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.waterfall-column {
    position: relative;
    width: 430px;
    will-change: transform;
    flex-shrink: 0;
    /* Prevent columns from shrinking */
}

.card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    box-sizing: border-box;
}

.card p {
    margin: 0 0 1rem 0;
    color: #4b5563;
    line-height: 1.6;
}

.author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.author div h4 {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

.author div p {
    margin: 0;
    font-size: 0.875rem;
    color: #6b7280;
}

@media(min-width:768px) and (max-width:1365px) {
    .waterfall-column {
        width: 320px;
    }

    .card {
        width: 100%;
        left: 0px;
    }

    .card p {
        font-size: 14px;
    }
}

@media(max-width:767px) {
    .card {
        width: calc(100% - 60px);
        left: 30px;
        right: 30px;
    }

    .card p {
        font-size: 14px;
    }
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1400px;
    padding: 0 20px;
    /* Max width of the features grid */
    margin: 0 auto;
}

.feature-card {
    background-color: #fff;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-number-container {
    display: flex;
    align-items: baseline;
    /* Aligns number and suffix */
    justify-content: center;
    margin-bottom: 10px;
}

.feature-number {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.feature-suffix {
    font-size: 30px;
    /* Slightly smaller suffix */
    font-weight: bold;
    color: #333;
    margin-left: 2px;
    /* Space between number and suffix */
    line-height: 1;
}

.feature-description {
    font-size: 18px;
    color: #000;
    line-height: 1.5;
    padding: 0;
    margin: 0;
}

@media(min-width:768px) and (max-width:1365px) {
    .feature-description {
        font-size: 16px;
    }
}

@media(max-width:767px) {
    .feature-description {
        font-size: 14px;
    }
}

/* Responsive adjustments for Features Section */
@media (max-width: 991px) {
    .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .showroom-hero-title {
        font-size: 30px;
    }

    .features-section-main-title {
        font-size: 28px;
    }

    .feature-number {
        font-size: 32px;
    }

    .feature-suffix {
        font-size: 24px;
    }
}

@media (max-width: 767px) {

    .showroom-hero-section,
    .showroom-features-section {
        padding: 40px 0;
    }

    .showroom-hero-title {
        font-size: 26px;
    }

    .features-section-main-title {
        font-size: 24px;
    }

    .hero-play-button {
        width: 70px;
        height: 70px;
    }

    .hero-play-button .play-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 575px) {
    .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Single column on very small screens */
        gap: 20px;
    }

    .showroom-hero-title {
        font-size: 22px;
    }

    .features-section-main-title {
        font-size: 20px;
    }

    .feature-number {
        font-size: 24px;
    }

    .feature-suffix {
        font-size: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .hero-play-button {
        width: 60px;
        height: 60px;
    }

    .hero-play-button .play-icon {
        width: 30px;
        height: 30px;
    }
}

.data-section {
    width: 100%;
    padding: 80px 0;
}

@media(max-width:767px) {
    .data-section {
        padding: 0px 0px 30px;
    }
}

.faq-section {
    width: 100%;
    background: #F7F7F7;
    padding: 100px 0 180px;
}

@media(min-width:768px) and (max-width:1365px) {
    .faq-section {
        padding: 80px 0;
    }
}

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

.faq-container {
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

@media(min-width:768px) and (max-width:1365px) {
    .faq-container {
        flex-direction: column;
        gap: 20px;
    }
}

@media(max-width:767px) {
    .faq-container {
        flex-direction: column;
        gap: 20px;
    }
}

.faq-left {
    max-width: 440px;
}

@media(min-width:768px) and (max-width:1365px) {
    .faq-left {
        max-width: 100%;
    }
}

.faq-left p {
    font-size: 18px;
}

@media(min-width:768px) and (max-width:1365px) {
    .faq-left p {
        font-size: 16px;
    }
}


@media(max-width:767px) {
    .faq-left p {
        font-size: 14px;
    }
}

.faq-right {
    flex: 1;
}

@media(min-width:768px) and (max-width:1365px) {
    .faq-right {
        flex: 1;
        width: 100%;
    }
}

.faq-title {
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
}

@media(min-width:768px) and (max-width:1365px) {
    .faq-title {
        font-size: 28px;
        text-align: center;
    }
}

@media(max-width:767px) {
    .faq-title {
        font-size: 24px;
    }
}

.faq-list {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media(min-width:768px) and (max-width:1365px) {
    .faq-list {
        padding: 0;
    }
}

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

.faq-title h2 {
    font-size: 24px;
    font-family: InterBold;
    width: 100%;
    max-width: 1400px;
    text-align: center;
}

.faq-item {
    padding: 20px;
    border: 1px solid #F0F0F0;
    background: #F9F9F9;
    padding-right: 40px;
}

.faq-item-title {
    font-size: 18px;
    /*font-weight: 700;*/
    color: #000000;
    position: relative;
    cursor: pointer;
    font-family: InterBold;
}

.faq-item-title h3 {
    font-size: 18px;
    margin: 0;
    color: #000;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.11px;
}

.faq-item-title img {
    width: 15px;
    height: 15px;
    cursor: pointer;
    position: absolute;
    right: -20px;
    top: 5px;
}

.faq-item-content {
    margin-top: 20px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

@media(max-width:767px) {
    .faq-item-title h3 {
        font-size: 16px;
    }

    .faq-item-content {
        font-size: 14px;
    }
}

.btn-about-us {
    background: #FF99D3;
    color: #fff;
    padding: 12px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

@media(min-width:768px) and (max-width:1365px) {
    .btn-about-us {
        font-size: 14px;
        width: 180px;
        padding: 10px 10px;
    }
}

@media(max-width:767px) {
    .btn-about-us {
        font-size: 14px;
        padding: 10px 20px;
    }
}

.btn-about-us:hover {
    background: #FF99D3;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
    font-weight: 700;
}

.other-section {
    width: 100%;
    margin-top: -100px;
    padding-bottom: 100px;
}

@media(min-width:768px) and (max-width:1365px) {
    .other-section {
        margin-top: 0px;
        padding-bottom:0;
    }
}

.other-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: #EEEEEE;
    padding: 50px 100px;
}

.other-container p {
    font-size: 18px;
}

@media(max-width:767px) {
    .other-section {
        margin-top: 0px;
        padding: 0;
    }

    .other-container {
        padding: 50px 15px;
    }

    .other-container p {
        font-size: 14px;
    }
}