:root{
    --primary-color:#09365f;
    --deep: #0f0f10;
    --light: #77a8d5;
    --muted: #cfcfcf;
    --white: #fff;
    --dark: #161616;
    --nav-height:78px;
        --primary-color: #0b2c4e;
    --accent-yellow: #f8b62d;
    --light-bg: #f4f7f6;
    --text-dark: #333;
}

/* RESET */
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body{
    height: 100%;
}

body{
    overflow-x: hidden;
    font-family: "Poppins", "Roboto", sans-serif;
}

body::-webkit-scrollbar{
    width: 10px;
}
body::-webkit-scrollbar-thumb{
    background: var(--primary-color);
    border-radius: 10px;
}

.container{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* BOUTON GÉNÉRAL */
.commonBtn{ 
    background: var(--primary-color); 
    padding: 14px 24px; 
    border: 1px solid var(--primary-color); 
    color: white; 
    font-weight: 300; 
    text-align: center; 
    border-radius: 5px; 
    text-decoration: none; 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 15px; 
    transition: 0.4s ease-in-out; 
} 
.commonBtn:hover{ 
    background: #fff;
    color: var(--primary-color); 
}

/* =========================
   HEADER GLOBAL
========================= */
header {
  /*   background: linear-gradient(to left, var(--secondary-color), var(--primary-color));*/
      background: linear-gradient(to right, #00152e, #09365f);
    width: 100%;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* =========================
   STRUCTURE
========================= */
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =========================
   LOGO
========================= */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
}

.logo img {
    width: 35px;
    height: auto;
}

.logo span {
    white-space: nowrap;
}

/* =========================
   MENU DESKTOP
========================= */

.nav-desktop ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-desktop ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-desktop ul li a:hover {
    color: var(--accent-color);
}

/* =========================
   HAMBURGER
========================= */
#hamburger {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: white;
}

/* =========================
   MENU MOBILE
========================= */
.nav-mobile {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    padding: 20px;
    z-index: 90;
}

.nav-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-mobile ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* Menu mobile ouvert */
.nav-mobile.open {
    display: flex;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

    /* Cache menu desktop */
    .nav-desktop {
        display: none;
    }

    /* Affiche hamburger */
    #hamburger {
        display: block;
    }

    /* Réduction du logo */
    .logo {
        font-size: 18px;
    }

    .logo img {
        width: 30px;
    }
}

@media (max-width: 480px) {

    header {
        padding: 12px 0;
    }

    .logo span {
        display: none;
    }

    .nav-mobile {
        padding: 15px;
    }
}

/* TITRES GÉNÉRAUX */
.subHeading{
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}
.Heading{
    font-size: 42px;
    font-weight: 800;
    margin: 10px 0 20px;
}
.desc{
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 15px;
    line-height: 1.6;
}

/* HERO */
.hero{
   height: 600px;
    margin-top: 98px;
    position: relative;
    /*background: url(../Images/save.png) center/cover;*/
      background: linear-gradient(to right, #000000, #09365f);
      /* background: radial-gradient(to top, var(--primary-color), var(--light));*/
    padding: 80px 0;
}

.hero .row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-left{
    width: 50%;
}
.hero-left h1{
    color: white;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
}
.hero-left h1 span{
    color: var(--primary-color);
}
.hero-left p{
    margin-top: 20px;
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 200;
    max-width: 450px;
    opacity: 0.9;
    color: var(--muted);
}

.hero-right{
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

/* BADGE ROTATIF */
.rotating-badge{
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 10s linear infinite;
    top: 70px;
}
@keyframes spin{
    from{ transform: rotate(0deg); }
    to{ transform: rotate(360deg); }
}

.badge-svg{
    position: absolute;
    width: 100%;
    height: 100%;
}
.badge-icon{
    font-size: 32px;
    z-index: 1;
    color: white;
}

/* IMAGE HERO DROITE */
.hero-right img{
    width: 100%;
    max-width: 420px;
    padding-top: 30px;
    margin-right: 30px;
    object-fit: contain;
}

/* BADGE AVIS CLIENTS (CSS corrigé) */
.rating-box-wrap{
  
    background: var(--primary-color);
    padding: 14px 20px;
    display: flex;
    position: absolute;
    bottom: 45px;
    right: 0;
    color: white;
    width: 600px;
    gap: 20px;
    border-radius: 8px;
}

.rating-box{
    width: 50%;
}
.rating-box h4{
    font-size: 18px;
}
.rating-box .star{
    width: 20px;
    vertical-align: middle;
}
.avatar-group img{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: -10px;
}

/* A PROPOS */
.about-section{
    background: linear-gradient(to left, #ffffff, #c3e0fc);
    padding: 120px 20px;
    display: flex;
    justify-content: center;
}
.about-container{
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}
.about-left{
    width: 50%;
    text-align: center;
}
.about-photo-wrap{
    margin-top: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.about-main-photo{
    margin-top: 80px;
    width: 400px;
    padding: 25px;
    background: var(--primary-color);
    border-radius: 6px;
    color: white;
    z-index: -1;
}

/* INFO STATS */
.about-stat-card{
    
    margin: -50px auto;
    width: 250px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.about-stat-card h2{
    font-size: 40px;
    font-weight: 800;
}
.about-stat-card p{
    margin: 5px 0 10px;
}

.about-users img{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: -10px;
}

/* DROITE ABOUT */
.about-right{
    margin-top: -70px;
    width: 60%;
    position: relative;
    padding-top: 40px;
}

/* LISTES À PUCE */
.about-check-list{
    margin: 20px 0;
}
.about-check-list li{
    list-style: none;
    margin-bottom: 12px;
    font-weight: 200;
}
.about-check-list li .bx{
    color: var(--primary-color);
    font-size: 22px;
}

/* BLOCS INFO */
.about-info-box{
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.about-info-box .icon .bx{
    font-size: 40px;
    color: var(--primary-color);
}
.about-info-box h3{
    font-size: 20px;
    font-weight: 700;
}

/* GRUE */
.about-crane{
    position: absolute;
    right: -110px;
    bottom: -72px;
    width: 280px;
    opacity: 0.7;
}

/* SERVICES */
.serviceSection{
    color: white;
    padding: 150px 0;
   /* background: url(../Images/save.png) center/cover no-repeat;*/
   background: linear-gradient(to right, #00152e, #09365f);
}

.service-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.col-33{
    width: calc(33.33% - 17px);
    display: flex;
    flex-direction: column;
}

.service-card{
    background: white;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    min-height: 220px;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
}
.service-card:hover{
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.08);
}

.service-card .icon i{
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card h2{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p{
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}
/* BUTTON ARROW */
.arrow-btn{
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #e3e3e3;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
}
.arrow-btn .bx{
    font-size: 26px;
}
.service-card:hover .arrow-btn{
    background: var(--primary-color);
    color: white;
}



/* SECTION CONTACT (AVANT PROCESSUS) */
.project-section {
 
    padding: 70px 20px;
    margin-top: 60px;
}

.project-wrapper {
   
    z-index: 1;
    max-width: 1200px;
    margin: auto;
    margin-top: -200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    gap: 40px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.08);
}

/* FORMULAIRE GAUCHE */
.form-box {
    
    width: 50%;
    padding: 40px;
}

/* IMAGE DROITE */
.truck-box {
    
    padding-right: 100px;
    margin-top: -500px;
    flex: 5;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: -1;
}
.truck-box img {
       
    width: 100%;
    max-width: 520px;
}

/* CHAMPS */
.form-box select,
.form-box input[type="text"],
.form-box input[type="email"] {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 15px;
}


.commonBtn:hover{
    background: #fff;
    color: var(--primary-color); 
}


/* ======= Témoignages ======= */
.temoignages {
    
    /*background: url('../Images/save.png') no-repeat center center/cover;*/
    background: linear-gradient(to right, #09365f, #200149);
    padding: 60px 20px;
    text-align: center;
    color: #ffffff;
}

/* Titres */
.temoignages .subHeading {
    color: var(--white);
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
    font-size: 1.1rem;
}

.temoignages .Heading {
    font-size: 2rem;
    margin-bottom: 40px;
}

/* Conteneur carousel */
.testimonial-container {

    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Chaque témoignage */
.testimonial {
    
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.top-section {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.top-section .image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.top-section .info {
    text-align: left;
}

.top-section .info h3 {
    margin: 0 0 5px 0;
}

.top-section .info .position {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.stars {
    color: var(--light);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.botton-text {
    margin-top: 15px;
    font-size: 1rem;
    color: #ffffff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .temoignages {
        padding: 40px 15px;
        background-size: cover;
        text-align: center;
    }

    .top-section {
        flex-direction: column;
        text-align: center;
    }

    .top-section .info {
        text-align: center;
    }

    .botton-text {
        margin-top: 10px;
    }
}


/* ======= PROCESSUS (Pourquoi nous choisir) ======= */
.nouschoisir{
    background: linear-gradient(to left, #09365f, #83919e);
    width: 100%;
    padding: 60px 20px 0px;
    background: white;
    text-align: center;
}

/* Conteneur */
.nouschoisir-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

/* Image centrale */
.middle-img {
    width: 380px;
    z-index: 2;
}
.middle-img:hover{
    transform: translate();
} 

/* Colonnes */
.features {
    width: 33%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Élément */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.feature-item i {
    font-size: 50px;
    color: var(--primary-color); 
    min-width: 60px;
}

/* Colonne droite miroir */
.right .feature-item {
    flex-direction: row-reverse;
    text-align: right;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 768px){
    /* Cacher l'image centrale sur mobile */
    .middle-img {
        display: none;
    }

    /* Conteneur vertical et centré */
    .nouschoisir-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    /* Colonnes texte centré */
    .features.left, .features.right {
        width: 100%;
        text-align: center;
    }

    /* Feature items centrés */
    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 15px;
    }

    /* Icones centrées */
    .feature-item i {
        min-width: auto;
    }

    /* Colonne droite miroir désactivée */
    .right .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* ======= CONTACT ======= */
.contact-section{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* Partie gauche : Localisations */
.contact-left {
    margin-top: 80px;
    flex: 1 1 450px;
}
.locations{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 20px;
}
.location {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.location h4{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
.location p{
   margin: 4px 0;
   color: #555;
   font-size: 14px;
}
.location p a{
    color: var(--deep);
 text-decoration: none;
}
.flag-icon i{
    font-size: 24px;
    color: var(--primary-color);
}

/* Partie droite : Formulaire */
.contact-right {
    flex: 1 1 450px;
}
.contact-right .form-box{
    background: #111;
    padding: 40px;
    border-radius: 6px;
    width: 100%;
    border-top: 6px solid var(--primary-color);
}
.form-box h3{
    color: white;
    font-size: 22px;
    margin-bottom: 20px;
}
.form-box input,
.form-box select,
.form-box textarea{
    width: 100%;
    background: #222;
    border: none;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 4px;
    color: white;
    font-size: 14px;
}
.form-box textarea{
    height: 120px;
    resize: none;
}
.input-row{
    display: flex;
    gap: 15px;
}
.input-row input{
    flex: 1;
}
.form-box button{
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.form-box button:hover{
    opacity: 0.9;
}

/* Responsive */
@media screen and (max-width: 900px){
    .locations{
        grid-template-columns: 1fr;
    }
    .input-row{
        flex-direction: column;
    }
}


/* ======= NEWSLETTER ======= */
.newsletter{
  /* background-color: var(--primary-color);*/
  background: linear-gradient(to left, #09365f, #00294f);
    padding: 40px;
    color: white;
    max-width: 1200px;
    position: relative;
    margin: auto;
    z-index: 99;
    margin-bottom: -76px;
}
.newsletter-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.newsletter-form{
    display: flex;
    gap: 10px;
    width: 500px;
}
.newsletter-form input{
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 6px;
}
.newsletter-form button{
    background: white;
    border: none;
    color: var(--primary-color);
    padding: 15px 25px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
}

/* ======= FOOTER ======= */
.footer {
    background: var(--dark);
    padding: 150px 70px 20px;
    color: white;
    position: relative;
}

.footer-scroll {
    position: absolute;
    background: var(--primary-color);
    font-size: 40px;
    width: 54px;
    height: 50px;
    border-radius: 11px;
    color: white;
    bottom: 23px;
    right: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 20px;
}

.footer-text {
    margin: 20px 0;
    color: #ccc;
    font-size: 14px;
    opacity: 0.7;
}

.footer-links ul li,
.footer-link ul li {
    margin: 8px 0;
}
.footer-links a,
.footer-link a {
    text-decoration: none;
    color: #ccc;
    opacity: 0.8;
    font-size: 14px;
}
.footer-links a:hover,
.footer-link a:hover {
    color: var(--primary-color);
}

/* FOOTER IMAGES */
.footer-galleries .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 70px);
    gap: 10px;
}
.footer-galleries .gallery-grid img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

/* BAS DE PAGE */
.footer-bottom {
    background: #1a1a1a;
    padding: 20px 0;
    border-top: 1px solid #333;
}
.footer-bottom-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    color: #cfcfcf;
    font-size: 15px;
}
.footer-social {
    display: flex;
    gap: 15px;
}
.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
.footer-social a:hover {
    background: var(--primary-color);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
    .Heading {
        font-size: 36px;
    }
    
    .hero-left h1 {
        font-size: 48px;
    }
    
    .nouschoisir-container {
        gap: 30px;
    }
    
    .middle-img {
        width: 300px;
    }
}

@media (max-width: 768px) {
    /* HEADER */
    nav ul {
        display: none;
    }
    
    #hamburger {
        display: block;
    }
    
    /* HERO */
    .hero {
        padding: 40px 20px;
        text-align: center;
    }
    
    .hero .row {
        flex-direction: column;
    }
    
    .hero-left,
    .hero-right {
        width: 100%;
    }
    
    .hero-left h1 {
        font-size: 36px;
    }
    
    .hero-right img {
        max-width: 80%;
        margin-top: 40px;
    }
    
    .rotating-badge {
        display: none;
    }
    
    .rating-box-wrap {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 40px;
        flex-direction: column;
        width: 100%;
    }
    
    .rating-box {
        width: 100%;
    }
    
    /* ABOUT */
    .about-container {
        flex-direction: column;
    }
    
    .about-left,
    .about-right {
        width: 100%;
    }
    
    .about-crane {
        position: static;
        margin-top: 40px;
        width: 100%;
        max-width: 280px;
    }
    
    /* SERVICES */
    .col-33 {
        width: 100%;
    }
    
    .service-grid {
        gap: 20px;
    }
    
    /* CONTACT FORM */
    .project-wrapper {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .form-box {
        width: 100%;
        padding: 20px 0;
    }
    
    .truck-box {
        padding: 0;
        margin-top: 40px;
    }
    
    .truck-box img {
        max-width: 100%;
    }
    
    /* PROCESSUS */
    .nouschoisir-container {
        flex-direction: column;
        text-align: center;
    }
    
    .features {
        width: 100%;
        align-items: center;
    }
    
    .right .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .middle-img {
        order: -1;
        margin-bottom: 40px;
        width: 80%;
    }
    
    /* CONTACT */
    .contact-section {
        flex-direction: column;
    }
    
    .contact-right .form-box {
        width: 100%;
        padding: 30px;
    }
    
    .locations {
        grid-template-columns: 1fr;
    }
    
    /* NEWSLETTER */
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }
    
    /* FOOTER */
    .footer {
        padding: 120px 20px 20px;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-scroll {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .Heading {
        font-size: 28px;
    }
    
    .hero-left h1 {
        font-size: 32px;
    }
    
    .commonBtn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .logo span {
        font-size: 18px;
    }
    
    .footer {
        padding: 100px 20px 20px;
    }
}



/*formation */

.containerf {
 
    max-width: 1100px;
    margin: 40px auto;
    display: flex;
    gap: 30px;
    padding: 50px;
}

main {
    flex: 2;
    background: rgb(255, 247, 196);
    padding: 40px;
    border-radius: 15px;
    
}



.badge {
    background: var(--accent-yellow);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
}

.grid-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.card {
    border-left: 4px solid var(--accent-yellow);
    padding-left: 15px;
    background: var(--light-bg);
    padding: 15px;
    border-radius: 0 8px 8px 0;
}

aside {
    flex: 1;
}

.info-box {
    background: linear-gradient(to right, #00152e, #09365f);
    color: white;
    padding: 30px;
    border-radius: 15px;
    position: sticky;
    top: 20px;
}

.price-tag {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
}

.price-tag .amount {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-yellow);
}

.stats-list {
    list-style: none;
    padding: 0;
}

.stats-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.filières{
    color: var(--primary-blue);
}
.tag {
    display: inline-block;
    background: white;
    color: var(--primary-blue);
    padding: 5px 12px;
    border-radius: 4px;
    margin: 5px 5px 5px 0;
    font-weight: bold;
    font-size: 0.9rem;
}

.btn-phone {
    display: block;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    text-decoration: none;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 20px;
    transition: transform 0.2s;
}

.btn-phone:hover {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .containerf { flex-direction: column; }
    main, aside { width: 100%; }
    main{
        box-shadow: none;
    }
}