body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.hero {
    text-align: center;
    padding: 60px 20px;
}

.logo {
    height: 80px;
    margin-bottom: 20px;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
}

.app-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-app {
    display: flex;
    align-items: center;
    /* padding: 12px 20px; */
    /* background: #15BE77; */
    /* color: white; */
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-app:hover {
    transform: scale(1.05);
}

.btn-app img {
    height: 24px;
    margin-right: 10px;
}