/* Styling Scope Wrapper */
.dpdpa-main-container {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #333333;
  background-color: #fbfbfb;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.dpdpa-main-container * {
  box-sizing: border-box;
}

/* Hero Section Banner mimicking the image layout */
.dpdpa-hero-banner {
  background:
    linear-gradient(135deg, rgba(20, 24, 33, 0.95) 0%, rgb(39 47 63 / 0%) 100%),
    url(https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=1200)
      no-repeat center center / cover;
  padding: 100px 4% 120px 4%;
  color: #ffffff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.dpdpa-hero-content {
  max-width: 750px;
}

.dpdpa-tagline {
  color: #e2a332;
  /* Reference orange theme color */
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.dpdpa-main-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.dpdpa-hero-description {
  font-size: 17px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.dpdpa-hero-description strong {
  color: #e2a332;
  font-size: 19px;
}

/* Orange Industrial Buttons */
.dpdpa-btn-primary {
  background-color: #e2a332;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}

.dpdpa-btn-primary:hover {
  background-color: #e04f0f;
  transform: translateY(-2px);
}

/* Deliverables Section Styling */
.dpdpa-deliverables-container {
  padding: 80px 4%;
  max-width: 1200px;
  margin: 0 auto;
}

.dpdpa-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.dpdpa-sub-tag {
  color: #e2a332;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.dpdpa-section-title {
  font-size: 32px;
  color: #1e2430;
  margin: 0;
  font-weight: 700;
}

.dpdpa-title-underline {
  width: 60px;
  height: 4px;
  background-color: #e2a332;
  margin: 15px auto 0 auto;
}

/* 3-Column Grid matching reference styles */
.dpdpa-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.dpdpa-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 33%);
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.dpdpa-card:hover {
  transform: translateY(-5px);
  border-bottom: 3px solid #e2a332;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.dpdpa-card-icon {
  font-size: 62px;
  margin-bottom: 20px;
}

.dpdpa-card-title {
  font-size: 20px;
  color: #1e2430;
  margin: 0 0 12px 0;
  font-weight: 600;
}

.dpdpa-card-text {
  font-size: 15px;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}

/* Accordion layout matching the "Do You Have Any Questions" section */
.dpdpa-audience-section {
  background-color: #e2a33229;
  padding: 80px 4%;
}

.dpdpa-audience-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.dpdpa-audience-left {
  flex: 1;
  min-width: 300px;
}

.dpdpa-audience-title {
  font-size: 32px;
  color: #1e2430;
  margin: 10px 0 20px 0;
  font-weight: 700;
}

.dpdpa-audience-desc {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
}

.dpdpa-accordion-container {
  flex: 1.3;
  min-width: 300px;
}

.dpdpa-accordion-item {
  background-color: #ffffff;
  margin-bottom: 15px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.dpdpa-accordion-header {
  width: 100%;
  background: #ffffff;
  border: none;
  outline: none;
  text-align: left;
  padding: 20px 25px;
  font-size: 16px;
  font-weight: 600;
  color: #1e2430;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

.dpdpa-accordion-header:hover {
  background-color: #fffbf9;
}

.dpdpa-accordion-arrow {
  font-size: 12px;
  color: #888888;
  transition: transform 0.3s ease;
}

.dpdpa-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 25px;
  background-color: #ffffff;
}

.dpdpa-accordion-body p {
  padding-bottom: 20px;
  margin: 0;
  color: #555555;
  font-size: 15px;
  line-height: 1.6;
}

/* Active interaction state classes controlled via Javascript */
.dpdpa-accordion-item.dpdpa-active .dpdpa-accordion-body {
  max-height: 200px;
  /* Adjust if description spans long paragraphs */
}

.dpdpa-accordion-item.dpdpa-active .dpdpa-accordion-arrow {
  transform: rotate(180deg);
  color: #e2a332;
}

.dpdpa-accordion-item.dpdpa-active .dpdpa-accordion-header {
  color: #e2a332;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .dpdpa-main-title {
    font-size: 32px;
  }

  .dpdpa-audience-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
