/* Customization Page Styles */

/* Hero Banner */
.cust-hero {
    width: 100%;
    position: relative;
    height: 600px;
    overflow: hidden;
}

.cust-hero img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.cust-hero-content {
    position: absolute;
    bottom: 80px;
    left: 80px;
    z-index: 2;
}

.cust-hero-title {
    font-size: 52px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.cust-hero-subtitle {
    font-size: 24px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Layout */
.cust-container {
    padding-left: 100px;
    padding-right: 100px;
    max-width: 1920px;
    margin: 0 auto;
}

.cust-section {
    width: 100%;
}

.cust-padded {
    padding: 60px 0;
}

.cust-bg-white {
    background: #fff;
}

.cust-bg-light {
    background: #fff;
}

.cust-full-img {
    width: 100%;
    display: block;
    margin: 0 auto;
}

/* Section header: 居中标题 + 副标题 */
.cust-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.cust-section-title {
    font-size: 35px;
    font-weight: bold;
    color: #222;
    margin-bottom: 12px;
}

.cust-section-subtitle {
    font-size: 22px;
    color: #222;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    /* Hero */
    .cust-hero {
        height: 220px;
    }

    .cust-hero-content {
        bottom: 20px;
        left: 15px;
        right: 15px;
    }

    .cust-hero-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .cust-hero-subtitle {
        font-size: 13px;
    }

    /* 容器 */
    .cust-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* 各区块 */
    .cust-padded {
        padding: 24px 0;
    }

    /* 标题区 */
    .cust-section-header {
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .cust-section-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .cust-section-subtitle {
        font-size: 13px;
    }
}


