/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Section principale */
.about-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Titre */
h1 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Paragraphes */
p {
    text-align: justify;
    margin-bottom: 25px;
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
}

/* Titre des réalisations */
.realisations-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Liste des réalisations */
.realisations-list {
    font-size: 1.1em;
    text-align: left;
    list-style-type: none;
    padding-left: 0;
}

.realisations-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: #444;
    font-weight: 500;
}

.realisations-list li::before {
    content: "•";
    color: #3498db;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Image */
.center-image {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.center-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Effets de hover sur les éléments de liste */
.realisations-list li:hover {
    color: #3498db;
    cursor: pointer;
    transform: translateX(5px);
    transition: transform 0.2s ease, color 0.2s ease;
}
/* Logo Styling */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    text-decoration: none;
    z-index: 10;
}

.logo-img {
    width: 120px;  /* Ajuste la taille du logo selon tes préférences */
    height: auto;
}


/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 20px;
        margin: 20px;
    }

    h1 {
        font-size: 2em;
    }

    .realisations-list {
        margin-left: 0;
    }

    .realisations-list li {
        padding-left: 15px;
    }
}