body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.header {
    background-color: #0056b3; /* Bleu de marque */
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 8px 8px 0 0;
}

.header h1 {
    margin: 0;
    font-size: 2.5em;
}

.header .slogan {
    margin-top: 5px;
    font-style: italic;
    opacity: 0.9;
}

/* --- Sections Générales --- */
.section {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.section h2 {
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.info-block {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.info-block p {
    flex: 1 1 45%; /* Deux colonnes par défaut */
    padding: 10px;
    background-color: #f9f9f9;
    border-left: 4px solid #0056b3;
}

.info-block p strong {
    color: #0056b3;
}

/* Mise en page pour les grilles spécifiques */
.grid-2 p {
    flex: 1 1 48%; 
}

.grid-3 p {
    flex: 1 1 30%; 
}

.full-width {
    flex: 1 1 100%; /* Une seule colonne */
}

.highlight {
    color: #d9534f; /* Couleur pour mettre en évidence les demandes ou les points clés */
    font-weight: bold;
}

/* --- Vision et Objectifs --- */
.vision-goals {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.goal-item {
    flex: 1;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
}

.goal-item h3 {
    color: #333;
    margin-top: 0;
}

/* --- Liste de Fonctionnalités --- */
.features-list ul {
    list-style: none;
    padding: 0;
}

.features-list li {
    background: #e9f7ff;
    margin-bottom: 8px;
    padding: 10px 15px;
    border-radius: 4px;
    border-left: 5px solid #5cb85c; /* Vert pour les avantages */
}

/* --- Équipe --- */
.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.team-members h3 {
    width: 100%;
    color: #333;
    margin-bottom: 10px;
}

.member-card {
    flex: 1 1 30%; /* Trois cartes par ligne */
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.member-card h4 {
    color: #0056b3;
    margin-top: 0;
}

/* --- Appel à l'Action --- */
.cta-section .highlight {
    background-color: #ffdddd;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

/* Style pour le logo et les visuels d'application */
.header .logo {
    max-height: 50px; /* Taille standard pour un logo dans l'en-tête */
    display: block;
    margin: 0 auto 10px;
}

.product-section .app-visual {
    width: 100%;
    max-width: 600px; /* Limite la taille pour ne pas être trop grand */
    display: block;
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Style pour les boutons d'affichage/masquage d'équipe */
.member-card button {
    background-color: #5cb85c; /* Vert d'action */
    color: white;
    border: none;
    padding: 8px 15px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    display: block;
    width: 100%;
}

.member-card button:hover {
    background-color: #4cae4c;
}

/* Style pour les détails cachés de l'équipe */
.member-details {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ccc;
}