.hero-section {
    display: flex; /* 컨텐츠와 이미지를 수평으로 배치 */
    justify-content: flex-start; /* 왼쪽 정렬 */
    align-items: center;
    color: black;
    padding-right: 100px;
    padding-left: 300px;
    height: 45vh; /* 섹션의 높이를 화면 크기로 설정 */
}

.hero-content {
    max-width: 80%; /* 텍스트 영역의 최대 너비를 60%로 설정 */
    padding-left: 100px; /* 텍스트 왼쪽 여백 */
}

.hero-section img {
    object-fit: contain; /* 이미지 비율을 유지하며 섹션에 맞게 맞추기 */
    max-width: 100%; /* 이미지 최대 너비를 40%로 설정 */
    max-height: 100%; /* 이미지의 최대 높이를 섹션 높이의 80%로 설정 */
    height: auto; /* 이미지 높이는 자동으로 조정 */
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.feature-box img {
    width: 150px;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* 이용 방법 섹션 스타일 */
.how-to-use {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ff7043;
    margin-bottom: 30px;
}

/* 개별 단계 스타일 */
.step {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

/* 원형 숫자 스타일 */
.step-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #ff7043;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 제목 스타일 */
.step h4 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* 설명 텍스트 */
.step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* 반응형 */
@media (max-width: 768px) {
    .step {
        margin-bottom: 20px;
    }
}

.review-box {
    background: #fafafa;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
