h1 {
    font-size: 32px;
}

.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: 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 {
        margin-top: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }

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

@media(max-width:767px) {
    .banner-desc-box-content {
        font-size: 16px;
    }
}

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

.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: #fff;
    font-size: 16px;
}

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

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

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

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

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

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

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

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

/* Delicate Craftsmanship Section Styles */
.delicate-craftsmanship-section {
    padding: 60px 0;
    background-color: #fff;
    /* Or a very light grey if preferred */
}

.dc-container {
    max-width: 1680px;
    /* Adjust as needed */
    margin: 0 auto;
    padding: 0 20px;
}

.dc-header {
    text-align: center;
    margin-bottom: 50px;
}

.dc-subtitle-above {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}

.dc-main-title {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

.dc-description {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.dc-process-list {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 90px 0;
}

@media(min-width:768px) and (max-width:1365px) {
    .dc-process-list {
        padding: 40px 15px;
    }
}

@media(max-width:767px) {
    .dc-process-list {
        padding: 40px 15px;
    }
}

.dc-process-item {
    display: flex;
    align-items: center;
    gap: 80px;
    /* Gap between text and image */
    margin-bottom: 70px;
    /* Space between process items */
}

.dc-process-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.dc-process-item:last-child {
    margin-bottom: 0;
}

.dc-text-content {
    flex: 1;
    /* Adjust flex ratio as needed, e.g., flex: 0 0 45%; */
}

.dc-image-content {
    flex: 1;
    /* Adjust flex ratio as needed, e.g., flex: 0 0 55%; */
    overflow: hidden;
}

.dc-image-content img {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    display: block;
}

/* Reverse layout for alternate items */
.dc-process-item.dc-item-reverse {
    flex-direction: row-reverse;
}

.dc-item-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
}

.dc-text-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    /* Space before button if any */
}

.dc-item-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: #f0f0f0;
    /* Light grey button */
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dc-item-button:hover {
    background-color: #e0e0e0;
    color: #222;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .dc-main-title {
        font-size: 32px;
    }

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

    .dc-item-title {
        font-size: 28px;
    }

    .dc-process-item,
    .dc-process-item.dc-item-reverse {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        /* Center text content on mobile */
    }

    .dc-image-content {
        /* Image will be above text in column layout by default */
        order: -1;
        /* Makes image appear first when flex-direction is column */
    }

    .dc-process-item.dc-item-reverse .dc-image-content {
        order: -1;
        /* Ensure image is still first for reversed items on mobile */
    }

    .dc-text-content p {
        font-size: 16px;
        text-align: left;
    }

    .dc-process-item {
        flex-direction: column !important;
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .dc-header {
        margin-bottom: 40px;
    }

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

    .dc-item-title {
        font-size: 24px;
        text-align: center;
    }

    .dc-image-content {
        /* Consider if full width images are too large on small mobile */
    }
}

.dc-certifications-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media(max-width:767px) {
    .dc-certifications-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dc-certifications-item {
    width: 78px;
    height: 78px;
    border-radius: 12px;
    border: 1px solid #E9E9E9;
    background: #FFF;
    padding: 10px;
}

.dc-certifications-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

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

@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: 32px;
    color: #000;
    padding-bottom: 30px;
    margin: 0;
}

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

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

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

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

/**
 * 等宽按钮样式
 * @author XuZhenxing
 */
.btn-equal-width {
    min-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 {
        min-width: 180px;
    }
}

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

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

@media(min-width:768px) and (max-width:1365px) {
    .btn-custom-primary {
        font-size: 14px;
        width: 200px;
    }
}

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

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