/*------------------------------------*\
  #SYSTEMS SECTION
\*------------------------------------*/

/* Styles for the systems section */
.systems-section {
  padding: 80px 30px;
  background-color: var(--bg-color);
  margin-bottom: 70px;
  position: relative;
}
/* Styles for before the systems-section */
.systems-section::before {
  content: "";
  position: relative;
  display: block;
  height: 60px;
  margin-bottom: 20px;
}
/* Styles for the systems container */
.systems-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 20px;
}
/* Styles for the system card */
.system-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  border: 2px solid transparent;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Styles for hover system-card */
.system-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
  border-color: var(--highlight-color);
}
/* Styles for the system icon */
.system-icon {
    width: 230px;
    height: 160px;
    margin-bottom: 25px;
}

.system-name {
  display: flex;
  font-size: 1.6em;
  color: var(--highlight-color);
  margin-bottom: 20px;
}
/* Styles for the system description */
.system-description {
  color: var(--text-color-secondary);
  line-height: 1.6;
}
