/* Start custom CSS for html, class: .elementor-element-ad24da6 */.dumps-section * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.dumps-section {
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
  padding: 48px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.dumps-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Breadcrumb Styles */
.dumps-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dumps-breadcrumb li {
  font-size: 14px;
  color: #666;
}

.dumps-breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.dumps-breadcrumb a:hover {
  color: #f97316;
}

.dumps-breadcrumb .separator {
  margin: 0 8px;
}

/* Content Styles */
.dumps-content {
  text-align: center;
  margin-top: 48px;
}

.dumps-header {
  margin-bottom: 48px;
}

.dumps-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.dumps-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features Grid */
.dumps-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 48px;
  padding: 0 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background-color: #f97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 14px;
  height: 14px;
  color: white;
}

.feature-item span {
  color: #333;
  font-size: 16px;
  line-height: 1.4;
}

/* CTA Button */
.dumps-cta button {
  background-color: #f97316;
  color: white;
  border: none;
  border-radius: 9999px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(249, 115, 22, 0.1);
}

.dumps-cta button:hover {
  background-color: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(249, 115, 22, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .dumps-features {
    grid-template-columns: 1fr;
  }
  
  .dumps-header h1 {
    font-size: 28px;
  }
  
  .dumps-header p {
    font-size: 16px;
  }
  
  .dumps-cta button {
    padding: 14px 28px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .dumps-section {
    padding: 32px 16px;
  }
  
  .dumps-header h1 {
    font-size: 24px;
  }
  
  .feature-item span {
    font-size: 14px;
  }
}/* End custom CSS */