body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9fafb;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.container {
    max-width: 900px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 30px 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    margin: auto;
}
.content {
    flex: 1;
}
h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: 0.05em;
    background: linear-gradient(45deg, #8a2be2, #ffb74d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
h2 {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    margin-top: 30px;
}
ul {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-position: inside;
}
p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}
.app-store-badge img {
    width: 150px;
    margin-top: 10px;
}
.images {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex: 1;
    align-items: center;
    justify-content: center;
}
.images img {
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    width: 100%;
    height: auto;
    background: white;
}
.contact {
    font-size: 12px;
    margin-top: 30px;
    color: #666;
}
.bold {
    font-weight: 700;
    color: #222;
}
footer {
    text-align: center;
    font-size: 12px;
    padding: 15px 10px;
    color: #999;
    margin-top: auto;
    user-select: none;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 25px;
    }
    .images {
        flex-direction: row;
    }
    .images img {
        max-width: 120px;
    }
}

.social-icons {
    margin-bottom: 10px;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
}

.social-icons img {
    width: 24px;
    height: 24px;
}
