.data-collections-main {
  padding: 2rem;
  color: #fff;
}

.section-data-collections {
  max-width: 1000px;
  margin: 0 auto;
}

.section-data-collections h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.section-data-collections h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.section-data-collections p {
  line-height: 1.6;
  font-size: 1.1rem;
}

.banner-container {
  padding: 30px 0 20px 0;
  text-align: center;
}

.banner {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  border: solid black 4px;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease-in-out;
}

.box:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.box .button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to right, #6a0dad, #8a2be2);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.box .button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: black 4px 4px;
  border: solid black 2px;
}

.feature-icon {
  font-size: 2rem;
  color: #007bff;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: bold;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
  margin: 2em 0;
}

.gallery img {
  width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.rounded-img {
  border-radius: 12px;
  border: solid black 2px;
  box-shadow: black 4px 4px;
}
