.main {
    margin-top: 100px;
}

/* .carousel-inner {
    width: 100%;
    max-width: 1440px;
    margin: auto;
} */

.btn-about-us {
    background: #FF99D3;
    color: #fff;
    padding: 12px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 400;
    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;
    }
}

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

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

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

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

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

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

.breadcrumb-container {
    max-width: 1360px;
    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;
}

@media(max-width:767px) {
    .breadcrumb-item {
        font-size: 12px;
    }
}

.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;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '';
}

/* About Us Hero Section Styles */
.about-hero-section {
    padding: 40px 0;
    background-color: #fff;
}

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

.about-hero-content {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.about-hero-left {
    flex: 1;
    max-width: 50%;
}

@media(min-width:768px) and (max-width:1365px) {
    .about-hero-left {
        max-width: 40%;
    }
}

.about-hero-right {
    flex: 1;
    max-width: 600px;
    padding-left: 40px;
    border-left: 1px solid #e5e5e5;
}

.about-subtitle {
    color: #999;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

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

.about-main-title {
    color: #222;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
}

.about-description {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.about-brand {
    color: #999;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Leadership Team Section */
.leadership-team-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.leadership-team-header {
    margin-bottom: 80px;
}

.leadership-team-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
}

.leadership-team-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
}

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

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

.team-member-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.team-member-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-member-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.team-member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.team-member-details {
    display: flex;
    flex-direction: column;
}

.team-member-name {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin: 0 0 4px 0;
}

@media(min-width:768px) and (max-width:1365px) {
    .team-member-name {
        font-size: 18px;
    }
}

.team-member-title {
    font-size: 18px;
    color: #666;
    margin: 0;
}

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

.team-member-quote-section {
    position: relative;
}

.quote-decoration {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.quote-decoration img:first-child {
    width: 18px;
    height: 18px;
}

.quote-decoration img:last-child {
    width: 100%;
    height: 14px;
    padding-top: 2px;
}

.team-member-quote {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

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

.team-member-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-image-placeholder {
    width: 100%;
    height: 300px;
    background-color: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    width: 669px;
    height: 529px;
    flex-shrink: 0;
}

@media(min-width:768px) and (max-width:1365px) {
    .team-member-image-placeholder {
        width: 350px;
        height: 250px;
    }
}

.team-member-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tablet Styles (768px - 1366px) */
@media (min-width: 768px) and (max-width: 1366px) {
    .about-hero-section {
        padding: 60px 0;
    }

    .about-hero-content {
        gap: 20px;
    }

    .about-hero-right {
        padding-left: 30px;
    }

    .about-main-title {
        font-size: 30px;
    }

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

    .leadership-team-section {
        padding: 60px 0;
    }

    .leadership-team-header {
        margin-bottom: 60px;
    }

    .leadership-team-title {
        font-size: 22px;
    }

    .team-member-row {
        gap: 30px;
        margin-bottom: 60px;
    }

    .team-member-image-placeholder {
        height: 250px;
    }
}

/* Mobile Styles (< 768px) */
@media (max-width: 767px) {
    .about-hero-section {
        padding: 40px 0;
    }

    .about-hero-container {
        padding: 0 15px;
    }

    .about-hero-content {
        flex-direction: column;
        gap: 30px;
        min-height: auto;
    }

    .about-hero-left {
        max-width: 100%;
    }

    .about-hero-right {
        max-width: 100%;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #e5e5e5;
        padding-top: 30px;
    }

    .about-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .about-main-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .about-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .about-brand {
        font-size: 14px;
    }

    /* Mobile Banner Adjustments */
    .banner-desc-box-title {
        font-size: 28px;
    }

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

    /* Leadership Team Mobile Styles */
    .leadership-team-section {
        padding: 40px 0;
    }

    .leadership-team-container {
        padding: 0 15px;
    }

    .leadership-team-header {
        margin-bottom: 40px;
    }

    .leadership-team-title {
        font-size: 24px;
    }

    .team-member-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .team-member-content {
        gap: 25px;
    }

    .team-member-info {
        gap: 15px;
    }

    .team-member-avatar {
        width: 70px;
        height: 70px;
    }

    .team-member-name {
        font-size: 18px;
    }

    .team-member-title {
        font-size: 14px;
    }

    .team-member-quote {
        font-size: 14px;
    }

    .team-member-quote-section {
        padding-left: 15px;
    }

    .quote-decoration {
        height: 30px;
        overflow: hidden;
    }

    .team-member-image-placeholder {
        height: 200px;
        width: 100%;
    }
}

/* Quote Section */
.quote-section {
    padding: 100px 0;
    background: #EFEFEF
}

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

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

.quote-main-title {
    font-size: 28px;
    color: #000;
    padding-bottom: 30px;
    margin: 0;
}

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

.quote-container p {
    font-size: 18px;
    color: #000;
}

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

.quote-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/**
 * 等宽按钮样式
 * @author XuZhenxing
 */
.btn-equal-width {
    width: 100px;
    text-align: center;
    display: inline-block;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 响应式设计 - 手机样式 */
@media (max-width: 768px) {
    .btn-equal-width {
        width: 100%;
    }
}

/* 响应式设计 - 平板样式 */
@media (min-width: 768px) and (max-width: 1366px) {
    .btn-equal-width {
        width: 180px;
        font-size: 14px;
    }
}

/* 响应式设计 - PC样式 */
@media (min-width: 1366px) {
    .btn-equal-width {
        width: 160px;
    }
}

.btn-custom-primary {
    background: #FF99D3;
    color: #fff;
    border: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border-radius: 12px;
}

@media(max-width:767px) {
    .btn-custom-primary {
        font-size: 14px;
    }
}

.btn-custom-primary:hover {
    background: #FF99D3;
    color: #fff;
    border: none;
    font-weight: 700;
    transform: translateY(-2px);
}