﻿<style >
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #EBE5DF;
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.container {
    background: #ffffff;
    width: 100%;
    max-width: 650px;
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    text-align: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #0b2a4a;
    margin-bottom: 10px;
}

h1 {
    font-size: 20px;
    margin: 16px 0;
    color: #0b2a4a;
    line-height: 1.3;
}

p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.section-title {
    margin-top: 26px;
    font-size: 17px;
    font-weight: 600;
    color: #0b2a4a;
}

ul {
    text-align: left;
    margin: 16px auto 26px;
    max-width: 480px;
    padding-left: 18px;
    color: #555;
}

    ul li {
        margin-bottom: 10px;
        font-size: 15px;
    }

/* ---------- STORE BUTTONS ---------- */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    margin: 20px 0 24px;
}

.store-btn img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
}

.store-btn {
    display: inline-block;
}

.footer-text {
    font-size: 14px;
    color: #666;
}

/* ---------- DESKTOP ---------- */
@media (min-width: 768px) {
    .container {
        padding: 40px;
    }

    h1 {
        font-size: 24px;
    }

    .buttons {
        flex-direction: row;
        justify-content: center;
    }
}

</style >
