/* Global Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

.main-banner {
    position: relative; /* 버튼 위치를 위해 relative 설정 */
    text-align: center;
    background-color: #fff;
    padding: 20px 0;
}

.banner-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    object-fit: cover; /* 이미지 비율 유지하며 꽉 채우기 */
}

/* Footer Styles */
.footer {
    background-color: #fff;
    color: #333;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #ccc;
}

.footer-content {
    display: flex; /* Flexbox 활성화 */
    justify-content: space-between; /* 좌우로 정렬 */
    align-items: center; /* 세로 중앙 정렬 */
    max-width: 1200px; /* 푸터 최대 너비 설정 */
    margin: 0 auto; /* 가운데 정렬 */
    padding: 0 20px; /* 좌우 패딩 추가 */
    color: #aaa;
    font-weight: bold;
}


.footer-content .right {
    margin: 10px 0;
    font-weight: normal;
}


.footer-content .left {
    margin: 10px 0;
}

.footer-content .left {
    text-align: left; /* 왼쪽 정렬 */
}

.footer-content .right {
    text-align: right; /* 오른쪽 정렬 */
}

.footer-content a:hover {
    text-decoration: underline;
}

/* Links in Footer */
.footer a {
    color: #ccc;
    text-decoration: none;
    margin: 0 5px;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px)

{
    .main-banner {
        height: 50vh;

{
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        width: 80%;
        margin: 0 auto;
    }

    .footer-content .left, .footer-content .right {
        margin: 0;
        width: 45%;
        text-align: left;
    }
}


/* 다운로드 버튼 영역 */
.download-buttons {
    position: absolute; /* 배너 위에 버튼 위치 */
    bottom: 20px; /* 배너 하단에서 20px 위 */
    left: 50%; /* 가로 중앙 정렬 */
    transform: translateX(-50%); /* 정확히 중앙에 위치하도록 조정 */
    display: flex; /* 버튼들을 가로로 배치 */
    gap: 20px; /* 버튼 사이 간격 */
}

/* 버튼 스타일 */
.button {
    display: inline-block; /* 버튼을 인라인 블록으로 */
    padding: 15px 30px; /* 버튼 내부 여백 */
    font-size: 16px; /* 텍스트 크기 */
    font-weight: bold; /* 텍스트 굵게 */
    color: #fff; /* 텍스트 색상 흰색 */
    background-color: #EA234F; /* 버튼 배경색 어두운 회색 */
    text-decoration: none; /* 링크 밑줄 제거 */
    border-radius: 5px; /* 약간의 둥근 모서리 */
    text-align: center; /* 텍스트 가운데 정렬 */
    cursor: pointer; /* 커서가 손 모양으로 변경 */
    transition: background-color 0.3s ease, border-color 0.3s ease; /* 애니메이션 */
}

/* 버튼 호버 효과 */
.button:hover {
    background-color: #555; /* 마우스 오버 시 배경색 변경 */
    border-color: #555; /* 테두리 색상 변경 */
}


