.page-da-ga {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  background: #ffffff; /* Default body background is white */
}

/* Hero Section */
.page-da-ga__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
  padding-bottom: 60px;
  background-color: #f5f5f5;
}

.page-da-ga__hero-image {
  width: 100%;
  height: 675px; /* Fixed height for desktop */
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.page-da-ga__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover for desktop to fill space */
  display: block;
}

.page-da-ga__hero-content {
  position: relative; /* Relative for normal flow below image */
  z-index: 2;
  text-align: center;
  margin-top: 30px;
}

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

.page-da-ga__intro-text {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #555555;
}

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

.page-da-ga__btn-primary,
.page-da-ga__btn-secondary,
.page-da-ga__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%; /* Ensure buttons don't overflow */
  box-sizing: border-box;
  text-align: center;
}

.page-da-ga__btn-primary {
  background: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid transparent;
}

.page-da-ga__btn-primary:hover {
  background: #a80707;
  transform: translateY(-2px);
}

.page-da-ga__btn-secondary {
  background: #017439;
  color: #FFFFFF;
  border: 2px solid #017439;
}

.page-da-ga__btn-secondary:hover {
  background: #005a2b;
  border-color: #005a2b;
  transform: translateY(-2px);
}

.page-da-ga__btn-link {
  background: transparent;
  color: #017439;
  border: 1px solid #017439;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 500;
}

.page-da-ga__btn-link:hover {
  background: #017439;
  color: #FFFFFF;
}

/* General Section Styling */
.page-da-ga__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-da-ga__section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #017439;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
}

.page-da-ga__section-title--light {
  color: #FFFFFF;
}

.page-da-ga__section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #555555;
}

.page-da-ga__section-description--light {
  color: #f0f0f0;
}

.page-da-ga__dark-section {
  background-color: #017439;
  color: #FFFFFF;
  padding: 60px 0;
}

.page-da-ga__light-bg {
  background-color: #f9f9f9;
  padding: 60px 0;
}

/* About Section */
.page-da-ga__about-section {
  padding: 60px 0;
}

.page-da-ga__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-da-ga__text-block {
  flex: 1;
}

.page-da-ga__text-block p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.page-da-ga__image-block {
  flex: 1;
  text-align: center;
}

.page-da-ga__image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Why Choose Section (Features Grid) */
.page-da-ga__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.page-da-ga__feature-card {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  color: #333333;
}

.page-da-ga__feature-card:hover {
  transform: translateY(-5px);
}

.page-da-ga__feature-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Min size for content images */
  min-height: 200px;
  object-fit: cover;
}

.page-da-ga__feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #017439;
  margin-bottom: 10px;
}

.page-da-ga__feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
}

.page-da-ga__cta-buttons--center {
  margin-top: 40px;
}

/* Types Section */
.page-da-ga__types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-da-ga__type-card {
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  color: #333333;
}

.page-da-ga__type-card:hover {
  transform: translateY(-5px);
}

.page-da-ga__type-card img {
  width: 100%;
  height: 250px; /* Fixed height for type cards */
  object-fit: cover;
  display: block;
  min-width: 200px; /* Min size for content images */
  min-height: 200px;
}

.page-da-ga__type-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #017439;
  padding: 20px 20px 10px;
}

.page-da-ga__type-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
  padding: 0 20px 20px;
}

/* Guide Section */
.page-da-ga__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}