/* your styles go here */
/* Example site test */

.box-image-text .image {
    min-height: 190px;
    max-height: 190px;
}

.box-image-text .image img {
    max-height: 190px;
    margin: auto;
}

.box-simple {
    min-height: 230px;
}


.navbar-brand {
    max-height: 66px;
    padding: 0px 0px;

}

.navbar-brand img {
    max-height: 66px;
}

/* 优化 carousel 区域 */
.carousel-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    background-color: rgba(0, 51, 102, 0.3); /* 深蓝半透明背景，增强对比 */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    max-width: 1200px;
}

/* 左侧文本区域 */
.carousel-text {
    flex: 1;
    padding-right: 2rem;
    color: white;
    text-align: left;
}

.carousel-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.carousel-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #e0f7ff;
}

.carousel-bullets {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.carousel-bullets li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #a8e6cf;
}

.carousel-bullets li::before {
    content: "✓";
    color: #00b894;
    margin-right: 0.5rem;
    font-weight: bold;
}

/* 右侧图片区域 */
.img-carousel-responsive {
    flex: 1;
    max-width: 600px;
    border-radius: 16px; /* 圆角 */
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    background-color: white;
    padding: 1rem;
    border: 1px solid #e0f7ff;
}

.carousel-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* 确保图片在响应式下正常缩放 */
@media (max-width: 900px) {
    .carousel-container {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }

    .carousel-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .carousel-image {
        max-width: 100%;
        margin-top: 1rem;
    }
}
