/* 											Блок 1 - Баннер											 */
.dbo-banner {
  position: relative;
  width: 100%;
  background-image: url("../images/phy/dbo-banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 2883 / 1024;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10%;
  box-sizing: border-box;
}

.dbo-banner-text-block {
  max-width: 40%;
}

/* Заголовок */
.dbo-banner-text-block h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  background: linear-gradient(135deg, #28a745, #3acb64 30%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

/* Контейнер для кнопок */
.dbo-banner-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 300px;
}

.dbo-banner-links-buttons {
  display: inline-block;
  text-align: center;
  padding: 12px 24px;
  background-color: #28a745;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  transform: scale(1);
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.2);
}

.dbo-banner-links-buttons:hover {
  background-color: #21953c;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(40, 167, 69, 0.4);
}

/* --- Адаптивность --- */

@media (max-width: 1024px) {
  .dbo-banner {
    padding-left: 5%;
  }
  .dbo-banner-text-block {
    max-width: 60%;
  }
  .dbo-banner-text-block h1 {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }
  .dbo-banner-links {
    max-width: 250px;
  }
  .dbo-banner-links-buttons {
    font-size: 15px;
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .dbo-banner {
    padding-left: 3%;
    justify-content: center;
    aspect-ratio: auto;
    min-height: 350px;
  }
  .dbo-banner-text-block {
    max-width: 90%;
    text-align: center;
  }
  .dbo-banner-text-block h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .dbo-banner-links {
    max-width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  .dbo-banner-links-buttons {
    flex: 1 1 auto;
    font-size: 14px;
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .dbo-banner {
    padding-left: 1rem;
    padding-right: 1rem;
    min-height: 300px;
  }
  .dbo-banner-text-block {
    max-width: 100%;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    color: #000; 
  }
  .dbo-banner-text-block h1 {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
  .dbo-banner-links {
    flex-direction: column;
    gap: 10px;
  }
  .dbo-banner-links-buttons {
    width: 100%;
    font-size: 14px;
    padding: 12px 0;
  }
}

/* 											Блок 2 - Текст											 */


.dbo-sbp-info-section {
  background-color: #ffffff;
  padding: 60px 20px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #000;
  display: flex;
  justify-content: center;
}

.dbo-sbp-info-container {
  max-width: 800px;
  width: 100%;
}

.dbo-sbp-info-container p {
  margin-bottom: 20px;
}

.dbo-sbp-info-container ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.dbo-sbp-info-container li {
  margin-bottom: 10px;
}

.dbo-sbp-info-note {
  background-color: #f8f9fa;
  font-size: 1.1rem
}
/* 											Блок 3-4 - Контакты											 */
.section-accent {
  padding: 13px 24px 48px;
  border-top: 1px solid #e0e0e0;
  background: #fff;
  max-width: 900px;
  margin: 0 auto;
}
.normative-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.normative-link-list li {
  position: relative;
  padding-left: 18px;
}

.normative-link-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
  font-size: 20px;
  line-height: 1;
}

.normative-link {
  text-decoration: underline;
  color: #212529;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.normative-link:hover {
  color: #28a745;
  transform: translateX(4px);
}

