body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main block centré */
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    width: 90%;
    padding: 2rem;
    border-radius: 12px;
    margin: auto; /* Sécurité supplémentaire */
    margin-top: 200px;
}

/* Force tous les enfants à s’étendre en largeur */
main > * {
    width: 100%;
}

/* Typographie */
h1, h2 {
    color: #fff;
    margin-bottom: 1rem;
}

p {
    line-height: 1.6;
    color: #dcdcdc;
    margin: 0.5rem 0;
}

a {
    text-decoration: none;
    color: #fff;
}

ion-icon {
    font-size: 25px;
}

/* Responsive */
@media (max-width: 600px) {
    main {
        padding: 1.2rem;
        margin-top: 50px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    p {
        font-size: 1rem;
    }
}
