/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  position: relative;
  background-color: #fff;
  margin: 50px auto;
  padding: 30px;
  width: 80%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

h3 {
  color: blue;
}
.modal-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.modal-header img {
  width: 50px;
  margin-right: 15px;
}

.modal-title {
  color: #00338d;
  font-size: 22px;
  margin: 0;
}

.modal-body {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.modal-footer {
  text-align: right;
  margin-top: 20px;
}

.close-button {
  background-color: #00338d;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
}

.close-button:hover {
  background-color: #002266;
}

@media (max-width: 768px) {
  .expertise-card {
    flex-basis: 100%;
  }

  .modal-content {
    width: 95%;
    margin: 20px auto;
  }
}
