/* Base styles */
.page-da-ga {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light backgrounds */
  line-height: 1.6;
}

/* Hero Section */
.page-da-ga__hero-section {
  padding-top: 10px; /* Small top padding, relying on body padding for header offset */
  padding-bottom: 60px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Brand colors for hero background */
  color: #ffffff; /* White text for dark background */
}
.page-da-ga__hero-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 0 15px;
}
.page-da-ga__hero-text-container {
  flex: 1 1 50%;
  min-width: 300px;
}
.page-da-ga__hero-title {
  font-size: clamp(2.2em, 4.5vw, 2.8em); /* Clamp for responsive H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}
.page-da-ga__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}
.page-da-ga__hero-cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.page-da-ga__hero-image-container {
  flex: 1 1 40%;
  text-align: center;
}
.page-da-ga__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Intro Section (Module 1 - 3 columns, circular images) */
.page-da-ga__intro-section {
  padding: 80px 0;
  background-color: #F5F7FA; /* Light background */
  color: #333333; /* Dark text for light background */
}
.page-da-ga__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.page-da-ga__section-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #E53935;
}
.page-da-ga__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #555555;
}
.page-da-ga__features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.page-da-ga__feature-item {
  flex: 1 1 30%;
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.page-da-ga__icon-box-media {
  width: 200px; /* Must be equal to height for circular images */
  height: 200px; /* Must be equal to width */
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #FF5A4F;
  box-shadow: 0 0 0 8px rgba(255, 90, 79, 0.3);
}
.page-da-ga__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Ensure image is also circular */
  display: block;
}