.mod-container {
  display: flex;
  flex-wrap: wrap;
  width: 100vw;
  min-height: 80vh;
  justify-content: center;
}

.mod-card {
  width: 80%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Columna Izquierda */
.mod-left-column {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background-color: #ffffff;
  justify-items: center;
  align-items: center;
}

.mod-item {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid #194493;
  transition: background-color 0.3s, color 0.3s;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.mod-item:hover {
  background-color: #194493;
  color: white;
}

.mod-icon-img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  object-fit: contain;
}

.mod-title {
  font-size: 16px;
  font-weight: bold;
}

/* Columna Derecha */
.mod-right-column {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mod-main-title {
  font-size: 32px;
  color: #194493;
  margin-bottom: 20px;
  text-align: center;
}

.mod-main-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}