/* =================================== Баннер ======================================== */
.deposits-banner-section {
    width: 100%;
    background: linear-gradient(145deg, #e5e9f0, #cdd3dc);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.deposits-banner-container {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.deposits-banner-container:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
}

/* ===== Контент блока ===== */
.deposits-banner-content {
    max-width: 600px;
	padding-left: 50px;
}

.deposits-banner-title {
    font-size: 34px;
    margin-bottom: 20px;
    color: #333;
    animation: fadeIn 0.8s ease-out;
}

.deposits-banner-description {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    animation: fadeIn 1.2s ease-out;
}

/* ===== Изображение ===== */
.deposits-banner-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    animation: slideIn 1s ease-out;
}

/* ===== Анимации ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Адаптивность ===== */
@media (max-width: 992px) {
    .deposits-banner-container {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
        max-width: 90%;
    }

    .deposits-banner-content {
        max-width: 100%;
        text-align: center;
    }

    .deposits-banner-title {
        font-size: 28px;
    }

    .deposits-banner-description {
        font-size: 16px;
    }

    .deposits-banner-image img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .deposits-banner-section {
        padding: 40px 0;
    }

    .deposits-banner-container {
        padding: 20px 15px;
        gap: 20px;
    }

    .deposits-banner-title {
        font-size: 22px;
    }

    .deposits-banner-description {
        font-size: 14px;
        line-height: 1.4;
    }
}

/* =============================================== Таблица =============================================== */
/* Основная стилизация секции */
.deposits-tabble-section {
    padding: 80px 20px 10px;
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: auto;
}

.deposits-tabble-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Стилизация таблицы */
.deposits-tabble-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-out;
}

.deposits-tabble-section.visible .deposits-tabble-table {
    opacity: 1;
    transform: translateY(0);
}

.deposits-tabble-table th,
.deposits-tabble-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eaeaea;
}

.deposits-tabble-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #444;
}

.deposits-tabble-table td {
    background-color: #fff;
    font-size: 1rem;
    color: #333;
    position: relative;
    transition: background-color 0.3s;
}

/* Эффект при наведении */
.deposits-tabble-table tr:hover td {
    background-color: #f0faff;
}

/* Анимация при изменении данных */
@keyframes rowBlink {
    0%, 100% {
        background-color: #d1e7ff;
    }
    50% {
        background-color: #ffffff;
    }
}

.deposits-tabble-table tr.updated td {
    animation: rowBlink 1s linear;
}
.deposits-table-dollar {
	padding-bottom: 100px;
}
.deposits-pdf-link-wrapper {
    text-align: center;
    margin-top: 30px;
}

.deposits-pdf-link {
    display: inline-block;
    padding: 12px 20px;
    background-color: #A30024;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 91, 172, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.deposits-pdf-link:hover {
    background-color: #7a001b;
    transform: translateY(-2px);
}

/* ============================================ Контакты ================================ */
/* Контейнер секции */
.deposits-contacts {
  background-color: #ffffff;
  text-align: center;
  padding: 30px 0 70px;
}

.deposits-contacts h1 {
  padding: 70px 20px 40px; 
  font-weight: 700;
  font-size: 2rem;
  max-width: 900px;
  margin: 0 auto 30px;
  border-bottom: 2px solid #dc3545;
}

/* Контейнер с карточками */
.deposits-contacts-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

/* Общий стиль для всех блоков */
.deposits-contats-city {
  flex: 1 1 300px;
  background: linear-gradient(135deg, #ffffff, #f9f9f9);
  color: #333333;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.5s forwards;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

/* Анимационная задержка */
.deposits-contats-city:nth-child(1) {
  animation-delay: 0.1s;
}
.deposits-contats-city:nth-child(2) {
  animation-delay: 0.3s;
}
.deposits-contats-city:nth-child(3) {
  animation-delay: 0.5s;
}

/* Ховер эффект */
.deposits-contats-city:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Заголовок городов */
.deposits-contats-city h2 {
  margin-bottom: 15px;
  font-size: 1.6em;
  font-weight: 700;
  color: #dc3545;
  border-left: 4px solid #dc3545;
  padding-left: 10px;
}

/* Текст */
.deposits-contats-city p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

/* Иконки */
.icon-phone::before,
.icon-location::before {
  display: inline-block;
  width: 1.3em;
  text-align: center;
  margin-right: 6px;
  font-size: 1.2em;
  color: #dc3545;
}

.icon-phone::before {
  content: "\260E";
}

.icon-location::before {
  content: "\1F4CD";
}

/* Плавное появление */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Адаптивность --- */
@media (max-width: 1024px) {
  .deposits-contacts h1 {
    font-size: 1.8rem;
    padding: 50px 15px 30px;
  }

  .deposits-contacts-wrapper {
    gap: 20px;
    max-width: 95%;
  }
  
  .deposits-contats-city {
    flex: 1 1 260px;
  }

  .deposits-contats-city p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .deposits-contacts-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .deposits-contats-city {
    width: 100%;
    max-width: 340px;
  }

  .deposits-contacts h1 {
    font-size: 1.5rem;
    padding: 40px 10px 20px;
  }
}






/* ============================================ Предупреждение ================================ */
/* Секция информации */
.information-section {
    background-color: #ffffff;
    margin: 40px auto;
    max-width: 1000px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-out;
    overflow: hidden;
}

.information-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.information-container {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
}

.information-icon {
    font-size: 2rem;
    color: #ff5c5c;
}

.information-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
}
/* ============================================ Госуслуги и ФССП ================================ */
.deposits-agencies-content {
	padding: 15px 20px;
	background-color: #fafafa;
	border-left: 4px solid #007BFF;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.deposits-agencies-text {
	font-size: 15px;
	line-height: 1.6;
	color: #333;
	margin-bottom: 12px;
}

.deposits-agencies-link {
	color: #007BFF;
	text-decoration: none;
	border-bottom: 1px dashed transparent;
	transition: border-color 0.2s ease;
}

.deposits-agencies-link:hover {
	border-color: #007BFF;
}




/* ============================================ Страхование вкладов ================================ */
.deposits-introdaction-section {
    padding: 60px 0;
    background: linear-gradient(145deg, #e9ecf2, #d1d6de);
    display: flex;
    justify-content: center;
}

.deposits-introdaction-container {
    max-width: 1000px;
    background: #ffffff;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.deposits-introdaction-container:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.deposits-introdaction-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.deposits-introdaction-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

/* ===== Список документов ===== */
.deposits-introdaction-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 20px;
}

.deposits-introdaction-list li {
    background: #f9f9f9;
    padding: 18px 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.deposits-introdaction-list li:hover {
    background: #f1f4f8;
    transform: translateY(-2px);
}

/* Ссылки документов */
.deposits-introdaction-list a {
    font-size: 16px;
    font-weight: 500;
    color: #000; /* черный цвет */
    text-decoration: underline; /* подчеркнуты всегда */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.deposits-introdaction-list a:hover {
    color: #dc3545; /* красный при наведении */
}

/* Значок PDF */
.deposits-introdaction-list a::before {
    content: "📄"; /* иконка документа */
    font-size: 1.1em;
    color: #dc3545;
    flex-shrink: 0;
}
/* Примечание внизу секции */
.deposits-introdaction-note {
    margin-top: 25px;
    padding: 16px 20px;
    background: #f8f9fb;
    border-left: 4px solid #0d6efd;
    border-radius: 10px;
    font-size: 15px;
    color: #444;
    line-height: 1.5;
}

.deposits-introdaction-note a {
    color: #0d6efd;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.deposits-introdaction-note a:hover {
    color: #083b8d;
}

/* --- Адаптивность --- */
@media (max-width: 768px) {
    .deposits-introdaction-container {
        padding: 25px;
    }

    .deposits-introdaction-title {
        font-size: 22px;
    }

    .deposits-introdaction-subtitle {
        font-size: 16px;
    }

    .deposits-introdaction-list a {
        font-size: 15px;
    }
}





/* ===== Страхование вкладов ===== */
.deposits-insurance-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0 ;
    background: linear-gradient(145deg, #f0f2f5, #d9dde3);
}

.deposits-insurance-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
	padding-right: 20px;
    max-width: 800px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deposits-insurance-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* ===== Изображение ===== */
.deposits-insurance-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.deposits-insurance-wrapper:hover .deposits-insurance-image {
    opacity: 0.9;
}

/* ===== Контент блока ===== */
.deposits-insurance-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.deposits-insurance-title {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}

.deposits-insurance-description {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.deposits-insurance-link {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.deposits-insurance-link::after {
    content: "";
    width: 0;
    height: 2px;
    display: block;
    background: #007bff;
    transition: width 0.3s;
}

.deposits-insurance-link:hover {
    color: #0056b3;
}

.deposits-insurance-link:hover::after {
    width: 100%;
}
