body {
    font-family: 'Lato', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 2rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

header h2 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #34495e;
    margin-top: 0;
    border-bottom: 1px solid #ecf0f1;
    padding-bottom: 1rem;
}

.pitch {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 2rem 0;
    color: #555;
}

.cta-container {
    margin: 2rem 0;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover, .cta-button:focus {
    background-color: #2980b9;
}

footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ecf0f1;
}

.links a {
    color: #3498db;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.links a:hover, .links a:focus {
    color: #2980b9;
    text-decoration: underline;
}

/* Pour la photo de profil si vous en ajoutez une */
.profile-photo {
    width: 150px;
    height: 187.5px; /* Maintenir le ratio 4:5 */
    border-radius: 8px; /* Bords légèrement arrondis */
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #ecf0f1;
}
.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
}

.language-selector a {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #7f8c8d;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid #dfe4ea;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}

.language-selector a:hover {
    background-color: #ecf0f1;
    color: #2c3e50;
    border-color: #bdc3c7;
} 
