/* 											Блок 1 - Баннер											 */
.dbo-banner {
  position: relative;
  width: 100%;
  background-image: url("../images/jur/dbo-ul-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, #dc3545, #ff5b6b 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: #dc3545;
  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: #b02a37;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(40, 167, 69, 0.4);
}

/* --- Адаптив --- */
@media (max-width: 768px) {
  .dbo-banner {
    padding-left: 5%;
    justify-content: center;
  }

  .dbo-banner-text-block {
    max-width: 90%;
    background-color: rgba(255 255 255 / 0.75); /* полупрозрачный белый фон */
    padding: 1.5rem 1rem;
    border-radius: 10px;
  }

  .dbo-banner-text-block h1 {
    font-size: 2rem;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #222; /* обычный текст на фоне */
    background: none;
    text-shadow: none;
    margin-bottom: 20px;
  }

  .dbo-banner-links {
    max-width: 100%;
  }

  .dbo-banner-links-buttons {
    width: 100%;
  }
}

/* 											Блок 2 - Текст											 */


.dbo-about-section {
  background-color: #ffffff;
  padding: 60px 20px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #000;
  display: flex;
  justify-content: center;
}

.dbo-about-container {
  max-width: 800px;
  width: 100%;
}

.dbo-about-container h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.dbo-about-container p {
  margin-bottom: 16px;
}

.dbo-about-accent {
  background-color: #fffbea;
  border-left: 4px solid #ffc107;
  padding: 12px 16px;
  margin-top: 24px;
  font-weight: 500;
}

/* 											Блок 3-4 - Контакты											 */
.section-accent {
  padding: 13px 24px 48px;
  border-top: 1px solid #e0e0e0;
  background: #fff;
  max-width: 900px;
  margin: 0 auto;
}

