.elementor-59 .elementor-element.elementor-element-6c768dd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for container, class: .elementor-element-6c768dd *//* Container */
.about-us-container {
  font-family: 'Poppins', sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #1A293D;
  line-height: 1.7;
}

/* Hero Section */
.about-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000; /* black for main heading */
}

.about-hero p {
  font-size: 18px;
  color: #333;
  max-width: 800px;
  margin-bottom: 50px;
}

/* Services Section */
.about-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-box {
  background: #f7f7f7;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ff0000; /* pure red for service titles */
}

.service-box p {
  font-size: 16px;
  color: #555;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Areas Served */
.about-areas h2 {
  font-size: 24px;
  color: #000000; /* black for heading */
  margin-bottom: 10px;
}

.about-areas p {
  font-size: 16px;
  color: #333;
}

/* Contact Section */
.about-contact h2 {
  font-size: 24px;
  color: #000000; /* black for heading */
  margin-bottom: 15px;
}

.about-contact p {
  font-size: 16px;
  color: #333;
  margin: 6px 0;
}

.about-contact a {
  color: #000000; /* email in black */
  text-decoration: none;
  font-weight: 600;
}

.about-contact a:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 32px;
  }

  .about-services {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */