
    .system-overview {
        background-color: #f8f9fa;
        border-radius: 15px;
        padding: 30px;
        margin-bottom: 30px;
    }
    .component-card {
        border: none;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        margin-bottom: 20px;
        transition: all 0.3s ease;
    }
    .component-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }
    .component-icon {
        font-size: 1.7rem;
        margin-bottom: 10px;
    }
    .component-details {
        margin: 12px;
    }
        
    .btn-toggle {
        width: 100%;
        text-align: left;
        padding: 15px;
        background-color: #fff;
        border: none;
        border-radius: 10px;
    }
    .btn-toggle:focus {
        box-shadow: none;
    }
    .btn-toggle::after {
        content: '\f078';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        float: right;
        transition: transform 0.3s ease;
    }
    .tech-badge {
        background-color: #007bff;
        color: white;
        padding: 3px 8px;
        border-radius: 15px;
        font-size: 0.8rem;
        margin-right: 5px;
    }
    .modern-jumbotron {
        background-color: #e9ecef;
        border-radius: 10px;
        padding: 30px;
        margin-bottom: 30px;
        text-align: center;
    }
    .card .custom-img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            margin-bottom: 10px;
            max-height: 240px; /* Définir une hauteur maximale fixe pour les images */
     }

.team-member-card {
    transition: transform 0.3s ease-in-out;
  }
  .team-member-card:hover {
    transform: translateY(-10px);
  }
  .social-icons a {
    color: #6c757d;
    transition: color 0.3s ease-in-out;
  }
  .social-icons a:hover {
    color: #0d6efd;
  }
