.utilities-systems-container {
  /* max-width: 1200px; */
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  /* border-radius: 20px; */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: utilities-systems-fadeIn 1s ease-out;
}

.utilities-systems-header {
  margin-top: 90px;
  color: white;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.utilities-systems-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: utilities-systems-rotate 20s linear infinite;
}

.utilities-systems-title {
  color: #01447a;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.utilities-systems-subtitle {
  color: #01447a;
  font-size: 1.3rem;
  opacity: 0.9;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

.utilities-systems-content {
  padding: 60px 40px;
}

.utilities-systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.utilities-systems-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.77);
}

.utilities-systems-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s;
}

.utilities-systems-card:hover::before {
  left: 100%;
}

.utilities-systems-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.utilities-systems-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: white;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.utilities-systems-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.3;
}

.utilities-systems-card-description {
  color: #5a6c7d;
  line-height: 1.6;
  font-size: 1rem;
}

.utilities-systems-floating-elements {
  display: none;
}

@keyframes utilities-systems-fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes utilities-systems-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .utilities-systems-body {
    padding: 10px;
  }

  .utilities-systems-header {
    padding: 40px 20px;
  }

  .utilities-systems-title {
    font-size: 2.5rem;
  }

  .utilities-systems-subtitle {
    font-size: 1.1rem;
  }

  .utilities-systems-content {
    padding: 40px 20px;
  }

  .utilities-systems-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .utilities-systems-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .utilities-systems-title {
    font-size: 2rem;
  }

  .utilities-systems-subtitle {
    font-size: 1rem;
  }

  .utilities-systems-card {
    padding: 20px;
  }

  .utilities-systems-card-title {
    font-size: 1.2rem;
  }

  .utilities-systems-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
