body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

header {
    background-color: #fff;
    padding: 20px 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.logo {
    height: 40px;
}

.hero {
    text-align: center;
    padding: 50px 20px; /* 패딩을 줄였습니다 */
    background: linear-gradient(to top, #ffe4e1, #fff); /* 분홍색 그라데이션 설정 */
}

.hero .main-image {
    max-width: 100%; /* 이미지가 컨테이너 너비를 넘지 않도록 설정 */
    height: auto;
    margin-bottom: 20px; /* 이미지와 텍스트 사이에 여백 추가 */
}

.hero h1 {
    font-size: 2.5em;
    margin: 0 0 20px;
    color: #333;
}

.app-store {
    background-color: #000;
}

.google-play {
    background-color: #34a853;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.download-buttons a {
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.7); /* 반투명 배경 */
    color: white;
    font-weight: bold;
    transition: background 0.3s;
}

.download-buttons a:hover {
    background: rgba(0, 0, 0, 0.9);
}

.download-buttons .button-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-buttons a img {
    width: 24px; /* 로고 이미지 크기 */
    height: auto;
}

footer {
    background-color: #333;
    color: #bbb;
    padding: 40px 20px;
    text-align: center;
}

.footer-content p {
    margin: 5px 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #bbb;
}
