/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
    font-family: "Open Sans", sans-serif;
}

/* Container */
.container {
    position: relative;
    width: 100%;
    max-width: 420px;
    min-height: 100vh;
    padding: 20px;
    background-color: #223A6E;
    background-image: url('assets/img/pattern.png'); /* Image combinée des patterns */
    background-size: cover;
    background-position: -35% center; /* Décale l'image de fond légèrement vers la droite */
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centre verticalement */
    align-items: flex-start; /* Alignement à gauche horizontalement */
    overflow: hidden;
    text-align: left; /* Alignement du texte à gauche */
}

/* Logo Section */
.logo-section {
    margin-bottom: 20px;
    text-align: left;
    margin-left: 20px; /* Ajoute une marge à gauche */
}

.logo {
    width: 70px;
    margin-bottom: 10px;
}

.brand-title {
    font-family: "Muli", sans-serif;
    font-size: 1.6rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
}

.title-bold {
    color: #fff;
}

.title-colored {
    color: #9DBE42; /* Green Text */
}

/* Mission Text */
.mission-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-left: 20px; /* Ajoute une marge à gauche */
    width: 50%; /* Définit la largeur à 1/3 du conteneur */
    word-wrap: break-word; /* Forcer le texte à passer à la ligne si nécessaire */
    text-align: left;
}

/* Start Button */
.start-button {
    margin-top: 20px;
    text-align: left;
    margin-left: 20px; /* Ajoute une marge à gauche */
    font-family: "Muli", sans-serif;
}

.start-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

.start-link img {
    width: 15px;
    margin-left: 20px;
    transition: transform 0.3s ease-in-out;
}

.start-link:hover img {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 480px) {
    .brand-title {
        font-size: 1.4rem;
    }

    .mission-text {
        font-size: 0.9rem;
        width: 80%; /* Passe en largeur complète sur les petits écrans */
    }
}
