.milvus-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.milvus-section h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.milvus-section p {
  margin-bottom: 15px;
  font-size: 16px;
}

.milvus-section h2 {
  font-size: 20px;
  margin: 20px 0 10px;
}

.milvus-section ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.milvus-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 15px;
}

.milvus-table th,
.milvus-table td {
  border: 1px solid #ddd;
  padding: 10px 15px;
  text-align: left;
  vertical-align: top;
}

.milvus-table th {
  background-color: #f5f5f5;
  font-weight: bold;
}

.milvus-table tr:nth-child(even) {
  background-color: #fafafa;
}
.comparison-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.comparison-section h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.comparison-section p {
  margin-bottom: 20px;
  font-size: 16px;
  text-align: center;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #ddd;
  padding: 10px 15px;
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background-color: #f5f5f5;
  font-weight: bold;
}

.comparison-table tr:nth-child(even) {
  background-color: #fafafa;
}

.comparison-table tr:hover {
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
}
.use-cases {
  padding: 40px 0;
  background-color: hsl(0, 1%, 72%); /* Dark background */
}

.use-cases .use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.servicebox {
  background: #fff;
  padding: 20px;
  text-align: center;
  
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicebox:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.servicebox img {
  display: block;
  margin: 0 auto 15px;
}

.servicebox h4 {
  margin: 10px 0;
  font-size: 18px;
  font-weight: bold;
}

.servicebox p {
  font-size: 14px;
  color: #555;
  text-align: justify;
}

/* Responsive Layout */
@media (max-width: 991px) {
  .use-cases .use-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .use-cases .use-case-grid {
    grid-template-columns: 1fr;
  }
}
