* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.BottomBanner_section {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.BottomBanner_bgImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
}

.BottomBanner_overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 20px;
}

.BottomBanner_title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.BottomBanner_subtext {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
}

.BottomBanner_contactBox {
    display: flex;
    gap: 80px;
    align-items: center;
}

.BottomBanner_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.BottomBanner_label {
    font-size: 1.5rem;
    color: #ff6b35;
    background-color: transparent;
    border: 2px solid #ff6b35;
    border-radius: 30px;
    padding: 6px 20px;
    letter-spacing: 1px;
}

.BottomBanner_item img {
    max-width: 40rem;
    height: auto;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .BottomBanner_section {
        height: auto;
        min-height: 350px;
    }
    
    .BottomBanner_title {
        font-size: 36px;
    }
    
    .BottomBanner_subtext {
        font-size: 1.1rem;
    }
    
    .BottomBanner_contactBox {
        flex-direction: column;
        gap: 30px;
    }
}