.page-da-ga {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #F5F7FA; /* Background color from custom config */
}

.page-da-ga__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
  box-sizing: border-box;
}

.page-da-ga__container--center {
  text-align: center;
}

.page-da-ga__section {
  padding: 40px 0;
  margin-bottom: 20px;
}

.page-da-ga__dark-section {
  background-color: #E53935; /* Main color as background */
  color: #ffffff; /* White text for dark background */
}

.page-da-ga__light-bg {
  background-color: #ffffff; /* Card BG color */
  color: #333333; /* Main text color */
}

.page-da-ga__section-title {
  font-size: 36px;
  font-weight: 700;
  color: inherit;
  text-align: center;
  margin-bottom: 20px;
}

.page-da-ga__sub-title {
  font-size: 24px;
  font-weight: 600;
  color: inherit;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-da-ga__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  color: inherit;
}

.page-da-ga__text-block p {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.7;
  text-align: justify;
}

.page-da-ga__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-da-ga__list li {
  margin-bottom: 10px;
  font-size: 17px;
}

/* Hero Section */
.page-da-ga__hero-section {
  padding-top: 10px; /* Small top padding, not --header-offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  color: #ffffff;
}

.page-da-ga__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-da-ga__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-da-ga__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.page-da-ga__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-da-ga__hero-description {
  font-size: 19px;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #f0f0f0;
}

.page-da-ga__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-da-ga__btn-primary,
.page-da-ga__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-da-ga__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

.page-da-ga__btn-primary:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.6);
}

.page-da-ga__btn-secondary {
  background: #ffffff;
  color: #E53935;
  border: 2px solid #E53935;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-da-ga__btn-secondary:hover {
  background: #f0f0f0;
  color: #FF5A4F;
  border-color: #FF5A4F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-da-ga__btn-small {
  padding: 10px 20px;
  font-size: 16px;
}

/* Grid Layouts */
.page-da-ga__grid {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.page-da-ga__grid--3-col {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-da-ga__grid--2-col {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Card Styles */
.page-da-ga__card {
  background: #ffffff; /* Card BG */
  border: 1px solid #E0E0E0; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-da-ga__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-da-ga__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-da-ga__card-title {
  font-size: 22px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-da-ga__card-text {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-da-ga__card--dark {
  background: #E53935; /* Main color */
  color: #ffffff;
  border-color: #FF5A4F;
}

.page-da-ga__card--dark .page-da-ga__card-title,
.page-da-ga__card--dark .page-da-ga__card-text {
  color: #ffffff;
}

/* Guide Section */
.page-da-ga__guide-step {
  background: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-da-ga__step-title {
  font-size: 24px;
  font-weight: 700;
  color: #E53935; /* Main color */
  margin-bottom: 15px;
}

.page-da-ga__guide-step p {
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-da-ga__image-block {
  margin-top: 40px;
  text-align: center;
}