/* Общий стиль для десктопа */
.MoneyTransferText {
    width: 80%;
    margin: 0 auto 50px auto;
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

/* Стиль для очень маленьких экранов (телефоны < 480px) */
@media (max-width: 480px) {
    .MoneyTransferText {
        width: calc(100% - 32px);
        margin: 16px;
        padding: 16px;
    }
}

/* Стиль для маленьких экранов (планшеты и смартфоны < 768px) */
@media (max-width: 768px) {
    .MoneyTransferText {
        width: calc(100% - 40px);
        margin: 20px;
        padding: 20px;
    }
}

/* savings-office карточки */
.savings-office-card {
    background-color: #fff;
    border: 1.5px solid #C62828;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.savings-office-card:hover {
    transform: scale(1.02);
}

/* Общая обертка */
.sharedWallpaper {
    background-color: #ffffff;
    padding: 40px 20px;
}

/* Иконка */
.iconClass {
    max-width: 100%;
    height: auto;
    margin-left: 20px;
}

/* Текст рядом с иконкой */
.spanClass {
    margin-left: 16px;
    font-size: 15px;
    font-weight: 500;
}


/* collapsible */
.collapsible {
    list-style: none;
    margin: 0;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}

.collapsible-header {
    cursor: pointer;
    padding: 16px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.collapsible-body {
    padding: 16px 20px;
    background-color: #fafafa;
}

/* Отступы для маленьких экранов */
@media (max-width: 768px) {
    .collapsible-body {
        padding: 12px 16px;
    }
}

/* Стили хлебных крошек и заголовков */
.breadcumb-area-banner {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.breadcumb-wrap-banner {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.breadcumb-wrap-banner h2 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
}

.breadcumb-wrap-banner h2::before,
.breadcumb-wrap-banner h2::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 40px;
    height: 2px;
    background-color: #fff;
    transform: translateX(-50%);
}

.breadcumb-wrap-banner h2::after {
    bottom: -6px;
}

.breadcumb-menu-banner {
    background: rgba(0,0,0,0.8);
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
}

.breadcumb-menu-banner ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcumb-menu-banner li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.breadcumb-menu-banner li a:hover {
    color: #C62828;
}
