/* Base styles for the page */
.page-da-ga {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
  line-height: 1.6;
}

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

.page-da-ga__section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #FFFFFF; /* Card BG */
}

.page-da-ga__section:nth-of-type(odd) {
  background-color: #F4F7FB; /* Background */
}

.page-da-ga__dark-section {
  background-color: #2F6BFF; /* Main Color */
  color: #ffffff; /* Ensure contrast */
}

.page-da-ga__section-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #1F2D3D; /* Text Main */
}

.page-da-ga__dark-section .page-da-ga__section-title {
  color: #ffffff;
}

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

.page-da-ga__dark-section .page-da-ga__text-block {
  color: #f0f0f0;
}

.page-da-ga__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.page-da-ga__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 80px;
  background-color: #F4F7FB;
}

.page-da-ga__hero-image-wrapper {
  width: 100%;
  max-height: 70vh; /* Limit height for hero image */
  overflow: hidden;
}

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