/* 리셋 및 기본 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.process-container {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #0099ff;
    color: white;
    min-height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.baro-process-section {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.baro-process-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.baro-process-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.baro-process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.baro-process-step {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    width: calc(20% - 16px);
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.baro-process-step.active {
    opacity: 1;
    transform: translateY(0);
}

.baro-process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.baro-step-number {
    background-color: white;
    color: #0040c1;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.baro-step-content {
    text-align: center;
}

.baro-step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.baro-step-description {
    font-size: 16px;
    line-height: 1.5;
}

/* 태블릿용 반응형 스타일 */
@media (max-width: 1024px) {
    .baro-process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .baro-process-step {
        width: 100%;
        max-width: 500px;
        flex-direction: row;
        text-align: left;
        padding: 20px;
    }
    
    .baro-step-number {
        margin-bottom: 0;
        margin-right: 20px;
        width: 60px;
        height: 60px;
        font-size: 24px;
        flex-shrink: 0;
    }
    
    .baro-step-content {
        text-align: left;
    }
}

/* 모바일용 반응형 스타일 */
@media (max-width: 768px) {
    .baro-process-title {
        font-size: 32px;
    }
    
    .baro-process-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .baro-process-step {
        padding: 15px;
    }
    
    .baro-step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .baro-step-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .baro-step-description {
        font-size: 14px;
    }
}