.section-01 {
    position: relative;
    width: 100%;
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('/img/main_banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.text-content {
    color: white;
    text-align: left;
    position: relative;
}

.main-text {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 300;
    position: relative;
    padding: 60px 0;
}

.main-text::before {
    content: '';
    background: url('/img/main_banner_rest_top.png') no-repeat;
    background-size: contain;
    position: absolute;
    width: 80px;
    height: 80px;
    left: 0;
    top: -40px;
}

.main-text::after {
    content: '';
    background: url('/img/main_banner_rest_bottom.png') no-repeat;
    background-size: contain;
    position: absolute;
    width: 80px;
    height: 80px;
    left: 0;
    bottom: -40px;
}

.justice-image {
    flex: 1;
    text-align: right;
    position: relative;
}

.justice-statue {
    width: 400px;
    height: 500px;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAwIiBoZWlnaHQ9IjUwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjAwIDUwIGMtNTAgMCAtOTAgNDAgLTkwIDkwIGMwIDMwIDE1IDYwIDQwIDc1IGwtMjAgMzAwIGwxNDAgMCBsLTIwIC0zMDAgYzI1IC0xNSA0MCAtNDUgNDAgLTc1IGMwIC01MCAtNDAgLTkwIC05MCAtOTB6IiBmaWxsPSIjY2NjIi8+PHBhdGggZD0iTTEwMCAyMDAgbC04MCA4MCBsMCAxMCBsODAgLTgwIHoiIGZpbGw9IiNhYWEiLz48cGF0aCBkPSJNMzAwIDIwMCBsODAgODAgbDAgMTAgbC04MCAtODAgeiIgZmlsbD0iI2FhYSIvPjwvc3ZnPg==');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(1.2);
}

.partners {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 40px 0;
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
}

.partner-logo {
    height: 60px;
    object-fit: contain;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .section-01 {
        height: 60vh;
        background-position: center center;
        background-size: cover;
    }
    
    .main-text {
        font-size: 24px;
        line-height: 1.4;
        padding: 40px 0;
    }
    
    .main-text::before {
        width: 40px;
        height: 40px;
        top: -20px;
    }
    
    .main-text::after {
        width: 40px;
        height: 40px;
        bottom: -20px;
    }
    
    .partners {
        gap: 20px;
        padding: 15px 0;
    }
    
    .partner-logo {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .section-01 {
        height: 50vh;
        background-position: 70% center;
        padding-top: 60px;
    }
    
    .main-text {
        font-size: 18px;
        padding: 30px 0;
        line-height: 1.5;
    }
    
    .main-text::before {
        width: 30px;
        height: 30px;
        top: -15px;
    }
    
    .main-text::after {
        width: 30px;
        height: 30px;
        bottom: -15px;
    }
    
    .partners {
        gap: 15px;
        padding: 10px 0;
    }
    
    .partner-logo {
        height: 25px;
    }
}