                  /* Navbar styles */
  .navbar-custom {
      background-color: #003247 !important;
      transition: all 0.3s ease;
      padding: 15px 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar-custom.scrolled {
      padding: 8px 0;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  }

  .navbar-brand-custom {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: white !important;
      transition: all 0.3s ease;
  }

  .navbar-brand-custom:hover {
      color: #ffc107 !important;
  }

  .profile-img {
      width: 60px;
      height: 60px;
      margin-right: 15px;
      transition: all 0.3s ease;
      border: 2px solid #ffc107;
      border-radius: 50% !important;
      /* ← Rend l'image ronde */
      object-fit: cover;
      /* ← Maintient les proportions */
  }

  .navbar-custom.scrolled .profile-img {
      width: 45px;
      height: 45px;
      margin-right: 10px;
  }

  .brand-info {
      transition: all 0.3s ease;
  }

  .brand-name {
      font-size: 1.4em;
      font-weight: bold;
      color: white;
      line-height: 1.2;
      transition: all 0.3s ease;
  }

  .navbar-custom.scrolled .brand-name {
      font-size: 1.2em;
  }

  .brand-title {
      font-size: 0.9em;
      color: #ffc107;
      line-height: 1.1;
      transition: all 0.3s ease;
  }

  .navbar-custom.scrolled .brand-title {
      font-size: 0.8em;
  }

  .brand-location {
      font-size: 0.75em;
      color: whitesmoke;
      line-height: 1.1;
      transition: all 0.3s ease;
  }

  .navbar-custom.scrolled .brand-location {
      font-size: 0.7em;
  }

  .navbar-nav .nav-link {
      color: rgba(255, 255, 255, 0.8) !important;
      font-weight: 500;
      margin: 0 5px;
      padding: 8px 12px !important;
      border-radius: 20px;
      transition: all 0.3s ease;
      white-space: nowrap;
  }

  .navbar-nav .nav-link:hover {
      color: #ffc107 !important;
      background-color: rgba(255, 193, 7, 0.1);
  }

  .navbar-nav .nav-link.active {
      color: #ffc107 !important;
      background-color: rgba(255, 193, 7, 0.2);
  }

  .navbar-toggler {
      border: none;
      padding: 5px 8px;
  }

  .navbar-toggler:focus {
      box-shadow: none;
  }

  .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

            /* Page styles - Thème Formation avec couleurs éducatives */
            body {
                font-family: 'Muli', sans-serif;
                background: linear-gradient(135deg, #f1f8ff 0%, #e8f4f8 100%);
                min-height: 100vh;
            }

            .main-content {
                margin-top: 120px;
                padding: 40px 0;
            }

            .page-title {
                font-family: 'Saira Extra Condensed', sans-serif;
                font-size: 4rem;
                font-weight: 700;
                color: #2c5282;
                text-align: center;
                margin-bottom: 60px;
                position: relative;
                text-transform: uppercase;
                letter-spacing: 2px;
            }

            .page-title::after {
                content: '';
                position: absolute;
                bottom: -15px;
                left: 50%;
                transform: translateX(-50%);
                width: 100px;
                height: 4px;
                background: linear-gradient(90deg, #4299e1, #2c5282);
                border-radius: 2px;
            }

            .formation-card {
                background: white;
                border-radius: 20px;
                padding: 40px;
                margin-bottom: 40px;
                box-shadow: 0 10px 30px rgba(44, 82, 130, 0.1);
                transition: all 0.3s ease;
                border: 1px solid rgba(44, 82, 130, 0.1);
                position: relative;
                overflow: hidden;
            }

            .formation-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 5px;
                height: 100%;
                background: linear-gradient(135deg, #4299e1, #2c5282);
            }

            .formation-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 40px rgba(44, 82, 130, 0.15);
            }

            .school-name {
                color: #2c5282;
                font-size: 2rem;
                font-weight: 700;
                margin-bottom: 10px;
                font-family: 'Saira Extra Condensed', sans-serif;
            }

            .school-name a {
                color: inherit;
                text-decoration: none;
                transition: color 0.3s ease;
            }

            .school-name a:hover {
                color: #4299e1;
            }

            .degree-title {
                color: #4299e1;
                font-size: 1.3rem;
                font-weight: 600;
                margin-bottom: 25px;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            .formation-description {
                color: #495057;
                line-height: 1.6;
                font-size: 1.05rem;
                margin-bottom: 20px;
            }

            .contact-info {
                background: rgba(66, 153, 225, 0.1);
                border-left: 4px solid #4299e1;
                padding: 15px;
                border-radius: 0 10px 10px 0;
                margin-bottom: 20px;
                color: #2c5282;
                font-weight: 500;
            }

            .contact-info a {
                color: #4299e1;
                text-decoration: none;
            }

            .contact-info a:hover {
                text-decoration: underline;
            }

            .competences-section {
                margin-top: 25px;
            }

            .competences-title {
                color: #2c5282;
                font-size: 1.2rem;
                font-weight: 700;
                margin-bottom: 15px;
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .competences-bloc {
                background: linear-gradient(135deg, rgba(66, 153, 225, 0.05), rgba(44, 82, 130, 0.05));
                padding: 25px;
                border-radius: 15px;
                border-left: 4px solid #4299e1;
                box-shadow: 0 4px 15px rgba(44, 82, 130, 0.08);
            }

            .competence-category {
                color: #2c5282;
                font-weight: 700;
                font-size: 1.1rem;
                margin-bottom: 10px;
                display: flex;
                align-items: center;
                gap: 8px;
            }

            .competence-list {
                margin-left: 20px;
                margin-bottom: 20px;
                list-style-type: none;
                padding-left: 0;
            }

            .competence-list li {
                color: #495057;
                line-height: 1.6;
                margin-bottom: 8px;
                font-size: 1.05rem;
                position: relative;
                padding-left: 10px;
            }

            .competence-list li::before {
                content: '▶';
                color: #4299e1;
                font-size: 0.8em;
                position: absolute;
                left: -5px;
                top: 2px;
            }

            .date-location {
                text-align: right;
                padding: 20px 0;
            }

            .date-badge {
                background: linear-gradient(135deg, #2c5282, #4299e1);
                color: white;
                padding: 10px 20px;
                border-radius: 25px;
                font-weight: 600;
                font-size: 1.1rem;
                display: inline-block;
                margin-bottom: 10px;
                box-shadow: 0 4px 15px rgba(44, 82, 130, 0.3);
            }

            .location-info {
                color: #6c757d;
                font-size: 0.95rem;
                display: flex;
                align-items: center;
                justify-content: flex-end;
                gap: 5px;
            }

            .location-icon {
                color: #dc3545;
            }

            /* Icônes spécifiques à l'éducation */
            .education-icon {
                color: #4299e1;
                font-size: 1.2em;
            }

            /* Statut spécial pour la formation en cours */
            .current-formation {
                background: linear-gradient(135deg, rgba(66, 153, 225, 0.1), rgba(44, 82, 130, 0.05));
                border: 2px solid #4299e1;
            }

            .current-formation::before {
                background: linear-gradient(135deg, #38a169, #4299e1);
                width: 8px;
            }

            .status-badge {
                background: linear-gradient(135deg, #38a169, #48bb78);
                color: white;
                padding: 5px 15px;
                border-radius: 15px;
                font-size: 0.85rem;
                font-weight: 600;
                display: inline-block;
                margin-bottom: 15px;
            }

            /* Responsive adjustments */
            @media (max-width: 991px) {
                .brand-info {
                    margin-right: 10px;
                }
                
                .brand-name {
                    font-size: 1.2em;
                }
                
                .brand-title {
                    font-size: 0.8em;
                }
                
                .brand-location {
                    font-size: 0.7em;
                }

                .navbar-nav {
                    flex-direction: column !important;
                    margin-top: 10px;
                }

                .navbar-nav .nav-link {
                    margin: 2px 0;
                    text-align: center;
                }

                .page-title {
                    font-size: 3rem;
                }

                .formation-card {
                    padding: 25px;
                }

                .date-location {
                    text-align: left;
                    margin-top: 20px;
                }
            }

            @media (max-width: 576px) {
                .profile-img {
                    width: 45px;
                    height: 45px;
                    margin-right: 10px;
                }
                
                .brand-name {
                    font-size: 1.1em;
                }
                
                .brand-title {
                    font-size: 0.75em;
                }
                
                .brand-location {
                    font-size: 0.65em;
                }

                .page-title {
                    font-size: 2.5rem;
                }

                .formation-card {
                    padding: 20px;
                    margin-bottom: 30px;
                }

                .school-name {
                    font-size: 1.6rem;
                }

                .degree-title {
                    font-size: 1.1rem;
                }
            }
