.main-content{
    background-color: var(--White);
}
.custom-container{
    max-width: unset;
    margin: 0 5%;
}

/* #region -----Hero Section----- */
.hero {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background-color: var(--Black);
    flex-shrink: 0;
    margin-top: 90px;
}

.hero-container {
    padding-top: 71px; 
    width: 100%;
}

.hero-img [name="Background"] {
    width: 640px;
    height: 640px;
    object-fit: cover;
}

.hero-img [name="Main"] {
    width: 256px;
    height: 256px;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* #endregion */ 

/* #region -----Quote Section----- */

.quote {
    width: 100%;
    height: 800px;
    background: linear-gradient(111deg, var(--Primary-Blue) -12.17%, var(--White) 201.57%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-content {
    max-width: 1300px;
    text-align: center;
}

.quote-content blockquote{
    margin-bottom: 20px;
}

.quote-button-container {
    padding: 10px 15px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
/* #endregion */

/* #region -----Chips Section----- */
.chips{
    padding-top: 83px;
    padding-bottom: 53px;
    background-color: var(--Black);
}

.chips [name="chips"] {
    margin-bottom: 19px;
}

.chips-container{
    margin-top: 53px;
    padding: 71px 100px;
    background-color: var(--White);
    border-radius: 5px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.10);
}

.chips-image{
    display: flex;
    align-items: center;
    justify-content: start;
    padding-right: 80px;
}

.chips-image img {
    width: 100%;
    height: auto;
}

.chips-content{
    max-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chips-text {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chips-text h5{
    margin-bottom: 7px;
}

.chips-text p{
    margin-bottom: 15px;
}

/* #endregion */

/* #region -----Commitment Section----- */
.commitment{
    padding: 100px 0;
    background-color: var(--Black);
}
.commitment-controls {
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.commitment .card {
    padding: 40px;
    margin-top: 50px;
    height: auto;
    border-radius: 5px;
    background: var(--White, #FFF);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}

.commitment .card-img {
    width: 50px;
    height: 50px;
}

.commitment .card-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px; /* 增加間距 */
}

.commitment .text-content {
    flex: 1;
    max-width: calc(100% - 6rem);
}

.commitment .image-content {
    flex-shrink: 0;
    max-width: 5rem;
}

.commitment .card-img {
    width: 100%;
    height: auto;
    max-width: 5rem;
    max-height: 5rem;
}

.third-card-image{
    max-height: 7rem !important;
}

.commitment .splide__pagination{
    position: unset;
    margin-top: 30px;
}

.commitment .splide__pagination__page {
    height: 10px;
    width: 100px;
    margin: unset;
    border-radius: unset;
    opacity: unset;
    background-color: var(--White, #FFF);
}

.commitment .splide__pagination__page.is-active {
    transform: unset;
    background-color: var(--Primary-Blue);
}


/* #endregion */

/* #region -----Report Section----- */
.report {
    padding: 0px 0;
    background-color: var(--White);
}

.report-text {
    max-height: 600px;
    padding: 20px 5%;
    line-height: normal;
}

.report p {
    margin-bottom: 40px;
}

.report [name="title"] {
    color: var(--Primary-Blue);
}

.report [name="content"] {
    color: var(--Black);
}

.report-image {
    padding: 0; /* 移除圖片區域內間距 */
    height: 100%; /* 確保圖片區域高度與左側一致 */
}

.report-image img {
    max-height: 600px;
    object-fit: cover; /* 圖片填滿容器，保持比例 */
    height: 100%; /* 確保圖片高度占滿 */
    width: 100%; /* 確保圖片寬度占滿 */
}
/* #endregion */ 