/* ========================= */
/* ABOUT PAGE IMPROVEMENTS   */
/* ========================= */

#body h3 {
    font-size: 32px;
    font-weight: bold;
    color: #f4b400; /* jaune data analyst */
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 6px solid #f4b400;
    padding-left: 15px;
    margin-bottom: 30px;
}

#body b {
    display: block;
    font-size: 18px;
    color: #2b2b2b;
    margin-top: 25px;
    margin-bottom: 10px;
    position: relative;
}

#body b::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #f4b400;
    margin-top: 5px;
    border-radius: 10px;
}

#body p {
    font-size: 14.5px;
    line-height: 28px;
    color: #555;
    padding: 0 10px;
}

/* ABOUT SECTION CARD STYLE */
#body {
    background: #ffffff;
}

/* Highlight tool section */
#body p:last-of-type {
    background: #fff3cd;
    padding: 15px;
    border-left: 5px solid #f4b400;
    border-radius: 5px;
    font-weight: 500;
}

/* Logo improvement (about page branding feel) */
#header .logo a {
    background: #f4b400 !important;
    color: #000 !important;
    font-weight: bold;
    border-radius: 5px;
}

/* Navigation hover modern effect */
#header .section ul li a:hover {
    background: #f4b400;
    color: #000;
    border-radius: 4px;
    transition: 0.3s;
}

/* About page container spacing */
#body {
    padding-top: 40px;
    padding-bottom: 60px;
}

/* Subtle shadow for text blocks */
#body p, #body b {
    transition: all 0.3s ease-in-out;
}

#body p:hover {
    transform: translateX(5px);
    color: #333;
}

/* Professional accent line */
#body h3::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, #f4b400, #ffd54f);
    margin-top: 10px;
    border-radius: 10px;
}


/* ========================= */
/* ABOUT CARD */
/* ========================= */

.about-card{
    max-width:1000px;
    margin:40px auto;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.about-header{
    text-align:center;
    padding:40px;
   
    color:#fff;
}

.about-header h3{
    margin:0;
    font-size:40px;
    text-transform:uppercase;
    letter-spacing:3px;
}

.about-header p{
    margin-top:10px;
    font-size:18px;
    font-weight:500;
}

.about-content{
    padding:35px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.info-card{
    background:#fffdf5;
    padding:25px;
    border-radius:12px;
    transition:.3s;
}

.info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.info-card h4{
    color:#d89e00;
    margin-bottom:12px;
    font-size:20px;
}

.info-card p{
    color:#555;
    line-height:28px;
    margin:0;
}

.tools-card{
    grid-column:1/-1;
}

.tools-list{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:15px;
}

.tools-list span{
    background:#f4b400;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:bold;
    transition:.3s;
    margin-bottom:30px;
    margin-top:30px;
}

.tools-list span:hover{
    background:#d89e00;
    transform:scale(1.05);
}