/* RESET BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* BODY */
body {
    background: #f4f6f8;
    color: #333;
    line-height: 1.6;
}

/* HEADER */
header {
    background: #0b2c48;
    color: #fff;
    text-align: center;
    padding: 30px 15px;
}

header img {
    width: 400px;
    max-width: 100%;
    margin-bottom: 15px;
}

header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* WHATSAPP */
.whatsapp {
    display: inline-block;
    background: #25d366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

.whatsapp:hover {
    background: #1ebd5a;
}

header .app-download-cta {
    display: inline-block;
    background: #0f5f9b;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 10px;
}

header .app-download-cta:hover {
    background: #0b75c5;
}

/* NAV */
nav {
    background: #133c5c;
    text-align: center;
    padding: 10px;
}

nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* MAIN */
main {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 15px;
}

/* SEZIONI */
section {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
}

section h2 {
    color: #0b2c48;
    margin-bottom: 15px;
}

.page-button {
    display: inline-block;
    background: #0b2c48;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.page-button:hover {
    background: #094066;
}

/* SERVIZI */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: #eef3f7;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    font-size: 1.1rem;
}

/* FORM */
form {
    margin-top: 20px;
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form textarea {
    resize: vertical;
    min-height: 120px;
}

form button {
    background: #0b2c48;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
}

form button:hover {
    background: #094066;
}

/* INFO CONTATTI */
.info {
    margin-top: 20px;
    font-size: 1.05rem;
}

.info a {
    color: #0b2c48;
    text-decoration: none;
}

/* FOOTER */
footer {
    background: #0b2c48;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.8rem;
    }

    .app-download-cta {
        display: block;
        width: fit-content;
        margin: 12px auto 0;
    }
}

/* CHECKBOX PRIVACY - solo per evitare che il checkbox prenda lo stile degli input */
.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.privacy-check input {
    width: auto;
    margin-top: 5px;
    margin-bottom: 0;
}

.privacy-check a {
    color: #0b2c48;
    font-weight: bold;
}

/* PAGINA DOWNLOAD APP */
.app-hero {
    background: linear-gradient(135deg, #0b2c48 0%, #0f5f9b 100%);
    color: #fff;
}

.app-hero h2 {
    color: #fff;
    font-size: 2rem;
}

.app-hero p {
    font-size: 1.1rem;
    max-width: 760px;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.store-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 230px;
    min-height: 68px;
    padding: 12px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.store-button span {
    font-size: 0.85rem;
    line-height: 1.1;
}

.store-button strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1.2;
}

.store-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
}

.store-icon svg {
    width: 34px;
    height: 34px;
    display: block;
}

.store-copy {
    display: block;
}

.app-store {
    background: #111;
    color: #fff;
}

.app-store svg {
    fill: #fff;
}

.play-store {
    background: #fff;
    color: #0b2c48;
}

.play-store svg .play-a {
    fill: #00a0ff;
}

.play-store svg .play-b {
    fill: #00d084;
}

.play-store svg .play-c {
    fill: #ffce00;
}

.play-store svg .play-d {
    fill: #ff3d00;
}

.store-button:hover {
    transform: translateY(-1px);
}

.small-note {
    margin-top: 15px;
    font-size: 0.9rem !important;
    opacity: 0.9;
}

.feature-list {
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 8px;
}

@media (max-width: 600px) {
    .app-hero h2 {
        font-size: 1.6rem;
    }

    .store-button {
        width: 100%;
    }
}
```css id="7w6k7d"
.download-area{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    margin-top:25px;
    flex-wrap:wrap;
}

.download-left{
    flex:1;
    min-width:320px;
}

.download-right{
    display:flex;
    justify-content:center;
    align-items:center;
}

.qr-image{
    width:170px;
    border-radius:20px;
    background:#fff;
    padding:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
}

@media(max-width:768px){

    .download-area{
        flex-direction:column;
        text-align:center;
    }

    .download-right{
        margin-top:10px;
    }

    .qr-image{
        width:190px;
    }
}
```
