.dr1015aboutushome {
  /* No wrapper styles needed */
}

.dr1015aboutushome .about-us-section {
  position: relative;
  background: linear-gradient(135deg, #fff9f2 0%, #f7eecb 100%);
  padding: 5rem 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #4d3900;
  text-align: center;
  border-radius: 1.5rem;
  max-width: 1100px;
  margin: 3rem auto;
  box-shadow: inset 0 0 60px 12px rgba(191, 160, 70, 0.1);
  z-index: 0;
}

/* Glitter shimmer effect inside container */
.dr1015aboutushome .about-us-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 223, 0, 0.15), transparent 70%);
  filter: blur(40px);
  animation: shimmer 6s linear infinite;
  pointer-events: none;
  z-index: 0;
  border-radius: 1.5rem;
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.dr1015aboutushome .about-us-section .section-title {
  position: relative;
  font-size: 3.2rem;
  font-weight: 900;
  color: #bfa046;
  margin-bottom: 0.7rem;
  text-shadow: 1px 1px 3px rgba(191, 160, 70, 0.6);
  letter-spacing: 1.5px;
  z-index: 1;
}

.dr1015aboutushome .about-us-section .section-subtitle {
  position: relative;
  font-size: 1.35rem;
  color: #7d6f36;
  margin-bottom: 3.5rem;
  font-style: italic;
  font-weight: 600;
  z-index: 1;
}

.dr1015aboutushome .about-us-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.dr1015aboutushome .about-us-text {
  max-width: 800px;
  text-align: left;
  font-size: 1.1rem;
  color: #5c4a1f;
  line-height: 1.75;
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}

.dr1015aboutushome .about-us-text p {
  margin-bottom: 1.8rem;
}

.dr1015aboutushome .features-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem 2.5rem;
}

.dr1015aboutushome .features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.15rem;
  color: #4a4a4a;
  font-weight: 600;
  padding: 1rem 1.5rem;
  background: #fffefc;
  border-radius: 1rem;
  box-shadow: 0 4px 14px rgba(191, 160, 70, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.dr1015aboutushome .features-list li:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(191, 160, 70, 0.35);
}

.dr1015aboutushome .features-list .icon {
  font-size: 1.8rem;
  color: #d4aa00;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.dr1015aboutushome .features-list li:hover .icon {
  color: #b68700;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 700px) {
  .dr1015aboutushome .about-us-text {
    font-size: 1rem;
    max-width: 100%;
  }
  .dr1015aboutushome .features-list {
    grid-template-columns: 1fr;
  }
  .dr1015aboutushome .features-list li {
    justify-content: center;
    text-align: center;
  }
  .dr1015aboutushome .features-list .icon {
    margin-bottom: 0.25rem;
  }
}