body{
    font-family: "Noto Sans Japanese", sans-serif;
    font-weight: 400;
    background: #f3f3f3;
}
.about-page {
    padding: 2rem 0 5rem;
   
}

.about-intro {
    max-width: 1410px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(0, auto));
}

.about-intro-text {
    color: #39435a;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    text-align: center;
    animation: slideUpFade 0.8s ease-out 0.2s forwards;
    transform: translateY(10px);
    opacity: 0;
}

.about-eyebrow {
    text-transform: uppercase;
    color: #995964;
    font-weight: 500;

    font-size:44px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.about-title {
    color: #393939;
    margin: 0;
    font-size:24.2px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.about-intro-text p {
    font-family: "Noto Sans Japanese", sans-serif;
    font-weight: 400;
    margin: 0;
    font-size: 16px;
    line-height: 1.85;
    color:#393939;
}

.about-gallery {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    margin-bottom: 1rem;
}

.about-gallery-item {
    overflow: hidden;
    position: relative;
}

.about-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.08);
    transform-origin: center;
    transition: transform 0.6s ease;
    animation: aboutGalleryZoom 3s ease-out forwards;
}

.about-gallery-item:nth-child(2) .about-gallery-img {
    animation-delay: 0.2s;
}

.about-gallery-item:hover .about-gallery-img {
    transform: scale(1.18);
}

@keyframes aboutGalleryZoom {
    0% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1.08);
    }
}

.about-benefits {
    background: #efe8e9;
    padding: 1rem 0 5rem 0;
    animation: slideUpFade 0.8s ease-out 0.2s forwards;
    transform: translateY(10px);
    opacity: 0;
}

@keyframes slideUpFade {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.about-benefits-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-benefits-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    color: #393939;
}

.about-benefits-eyebrow {
    text-transform: uppercase;
    color: #995964;
    font-size: 36px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.about-benefits-title {
    margin: 0;
    font-size: 19.2px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #393939;
}

.about-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 420px);
    row-gap: 3rem;
    column-gap: 5rem;
    justify-content: center;
}

.about-benefit-card {
    width: 100%;
    max-width: 420px;
    text-align: center;
    border-radius: 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    color: #31466b;
}

.about-benefit-icon {
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f6ff;
}

.about-benefit-icon img {
    object-fit: contain;
}

.about-benefit-card h3 {
    color: #995964;
    margin: 0;
    font-size: 24.2px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.about-benefit-card p {
    margin: 0;
    line-height: 1.85;
    font-size: 16px;
    color: #393939;
}



.about-process-inner {
    max-width: 1410px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-process h2 {
    margin: 0;
    color: #995964;
    font-weight: 500;
    text-align: center;
    font-size: 36px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.about-process-grid {
    display: grid;
    grid-template-columns: repeat(2, 680px);
    row-gap: 2rem;
    column-gap: 2rem;
    justify-content: center;
}

.about-process-card {
    width: 100%;
    max-width: 680px;
    background: #ffffff;
    display: grid;
    grid-template-columns: 300px 1fr;
    overflow: hidden;
    /* box-shadow: 0 3px 15px rgb(108 53 53 / 15%); */
}

.about-process-image {
    position: relative;
    overflow: hidden;
    width: 300px;
    height: 300px;
}

.about-process-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    display: block;
    transform: scale(1.2);
    animation: slowPullBack 2s ease-out forwards;
}

@keyframes slowPullBack {
    0% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.about-process-card:hover .about-process-image img {
    transform: scale(1.05);
}

.about-process-text {
    padding: 3.75rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    color: #2d3f63;
    animation: slideUpFade 0.8s ease-out 0.2s forwards;
    transform: translateY(10px);
    opacity: 0;
}

.about-process-text h3 {
    margin: 0;
    font-size: 30.8px;
    color: #995964;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.about-process-text p {
    margin: 0;
    line-height: 1.8;
    font-size: 16px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #393939;
}

.about-testimonials {
    padding: 3rem 0 5rem;
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    color: #2d3f63;
    background: #efe8e9;
    animation: slideUpFade 0.8s ease-out 0.2s forwards;
    transform: translateY(10px);
    opacity: 0;
    margin-top: 5rem;
}

.about-testimonials h2 {
    margin: 0;
    font-size: 30.8px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: #995964;
}

.about-testimonials span {
    font-size: 16px;
    color:#393939;
}

.about-testimonials-grid {
    display: grid;
    grid-template-columns: 705px 540px;
    gap: 10.5rem;
    align-items: center;
    max-width: 1410px;
    margin: 0 auto;
    justify-content: center;
}

.about-testimonials-media {
    position: relative;
    overflow: hidden;
    width: 705px;
    height: 705px;
}

.about-testimonials-media img {
    width: 705px;
    height: 705px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;/*鼠标悬停的时间*/
    transform: scale(1);
    animation: pageLoadZoom 0.5s ease;/*页面加载的放大效果*/
}
@keyframes pageLoadZoom {
    0% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.about-testimonials-media:hover img {
    transform: scale(1.08) ;
}

@keyframes aboutTestimonialsPullBack {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.06);
    }
}

@keyframes aboutTestimonialsHover {
    0% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1.1);
    }
}

.about-team-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 540px;
}

.about-team-item {
    border-bottom: 1px solid rgba(120, 139, 174, 0.35);
    padding: 1.15rem 0;
}

/* .about-team-item:last-of-type {
    border-bottom: none;
} */

.about-team-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 24.2px;
    color: #e58393;
}
.about-team-title{
    font-size: 24.2px !important;
    font-weight: 400 !important;
}
.about-team-item summary::-webkit-details-marker {
    display: none;
}

.about-team-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
}

.about-team-marker::before {
    content: '✔';
    font-size: 1.15rem;
    color: #1f3f89;
}



.about-team-item summary::after {
    content: '+';
    font-size: 2rem;
    color: #393939;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    transition: transform 0.35s ease, color 0.35s ease, border-color 0.35s ease;
    transform-origin: center;
}

.about-team-item[open] summary::after {
    content: '–';
    transform: rotate(180deg);
    color: #393939;
    border-color: rgba(31, 63, 137, 0.45);
}

.about-team-content {
    padding: 1.2rem 0 0 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    color: #393939;
}

.about-team-content h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #995964;
}

.about-team-content p {
    margin: 0;
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 991.98px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-intro-text p{
        line-height:normal;
    }
    .about-gallery{
        gap: 1.5rem;
        margin-bottom:0.6rem
    }

    .about-benefit-icon img{
        width:96px;
        height:96;
    }
    .about-benefits-header{
        gap:0.2rem;
    }
    .about-benefits {
        padding: 0 0 2rem;
    }

    .about-benefits-grid {
        grid-template-columns: repeat(2, 420px);
        row-gap: 3rem;
        column-gap: 2rem;
        justify-content: center;
    }
    .about-process-image,.about-process-image img{
        width: 100%;
        height: 384px;
    }

    .about-process {
        padding: 0rem 0;
    }

    .about-process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-eyebrow{
        font-size: 38.7px;
    }
    .about-title{
        font-size: 21.2px;
    }
    .about-process-card {
        grid-template-columns: 1fr;
        box-shadow:none;
    }

    .about-process-text {
        padding: 2.25rem 2rem 2.75rem;
    }

    .about-testimonials {
        padding: 3rem 1.5rem 5rem;
    }

    .about-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
        max-width: 100%;
    }

    /* Mobile: place the image AFTER the accordion */
    .about-testimonials-grid {
        display: flex;
        flex-direction: column;
    }

    .about-team-accordion {
        order: 1;
    }

    .about-testimonials-media {
        order: 2;
    }

    .about-testimonials-media {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .about-testimonials-media img {
        width: 100%;
        height: 100%;
        max-width: 100%;
    }

    .about-team-accordion {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .about-page {
        padding: 2rem 0 2.2rem;
    }

    .about-intro {
        padding: 0 1.25rem;
    }

    .about-gallery {
        grid-template-columns: 1fr;
    }

    .about-benefits-inner {
        padding: 0 1.25rem;
        gap: 2rem;
    }

    .about-benefits-grid {
        grid-template-columns: 1fr;
        row-gap: 3rem;
        column-gap: 2rem;
    }

    .about-benefit-card {
        max-width: 100%;
        padding: 0;
        gap:0.8rem;
    }

    /* .about-process-inner {
        padding: 0 1.25rem;
    } */

    .about-process-text {
        padding: 1rem 0 0 0;
    }

    .about-testimonials {
        padding: 3rem 1rem 3rem;
        margin-top: 3rem;
    }

    .about-testimonials h2 {
        font-size: 27px;
    }

    .about-testimonials span {
        font-size: 16px;
    }

    .about-testimonials-grid {
        padding: 0;
        gap: 3rem;
    }

    .about-testimonials-media {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .about-testimonials-media img {
        width: 100%;
        height: 100%;
        max-width: 100%;
    }

    .about-team-accordion {
        width: 100%;
        max-width: 100%;
    }

    .about-team-item {
        padding: 1rem 0;
    }

    .about-team-item summary {
        font-size: 1.1rem;
        gap: 0.75rem;
    }

    .about-team-title {
        font-size: 21.2px !important;
    }

    .about-team-content {
        padding: 1rem 0 0 2rem;
        font-size: 0.9rem;
    }
}


