* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} 
/*						Блок 1 - Баннер							*/
.guaranty-banner {
  position: relative;
  width: 100%;
  background-image: url("../images/jur/guaranty-banner.png");
	background-color: white;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 2883 / 1024;
}

/* Базовые стили кнопки */
.guaranty-banner-button {
  position: absolute;
  bottom: 8%;
  right: 12%;
  padding: 12px 24px;
  font-size: 1rem;
  cursor: pointer;
  background-color: red; /* можешь убрать или заменить на свой класс */
  color: white;
  border: none;
  border-radius: 4px;
}

/* Немного выше и левее на больших экранах */
@media (min-width: 1025px) {
  .guaranty-banner-button {
    bottom: 12%;
    right: 20%;
  }
}

/* Планшеты */
@media (max-width: 1024px) {
  .guaranty-banner-button {
    right: 8%;
    bottom: 6%;
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

/* Мобильные */
@media (max-width: 768px) {
  .guaranty-banner {
    background-size: cover;
    aspect-ratio: auto;
    height: 300px;
  }

  .guaranty-banner-button {
    right: 6%;
    bottom: 5%;
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .guaranty-banner {
    height: 220px;
  }

  .guaranty-banner-button {
    right: 5%;
    bottom: 5%;
    font-size: 0.8rem;
    padding: 6px 14px;
  }
}



/*						Дизайн таблицы								*/
.guaranty-table {
  padding: 40px 20px;
  color: #eee;
  max-width: 1100px;
  margin: 0 auto;
}

.guaranty-table-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #f44336; /* ярко-красный */
  text-transform: uppercase;
  letter-spacing: 2px;
}

.guaranty-table-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guaranty-table-row {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  padding: 24px 32px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.guaranty-table-row:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.35);
}

.guaranty-table-label {
  font-weight: 700;
  color: #b71c1c; /* насыщенный темно-красный */
  font-size: 1.2rem;
  margin-bottom: 8px;
  padding-left: 40px;
  position: relative;
}

.guaranty-table-label::before {
  content: "✔"; /* можно заменить на любую иконку или svg */
  position: absolute;
  left: 12px;
  top: 0;
  color: #f44336;
  font-size: 1.4rem;
  line-height: 1;
}

.guaranty-table-value {
  color: #222;
  line-height: 1.7;
  font-size: 1rem;
  padding-left: 40px;
  border-left: 3px solid #f44336;
  margin-left: 10px;
}

@media (max-width: 600px) {
  .guaranty-table {
    padding: 30px 10px;
  }
  .guaranty-table-title {
    font-size: 1.8rem;
  }
  .guaranty-table-row {
    padding: 18px 20px;
  }
  .guaranty-table-label, .guaranty-table-value {
    padding-left: 30px;
  }
  .guaranty-table-label::before {
    left: 8px;
  }
  .guaranty-table-value {
    margin-left: 6px;
    border-left-width: 2px;
  }
}

