body {
    font-family: Inter, sans-serif;
}


        /* Стили для загрузчика */
        #loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        
        .loan-offer {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .loan-offer h1 {
            color: #333;
            font-size: 24px;
        }
        
        /* Стили для крутящихся долларов */
        .dollar-spinner {
            position: relative;
            width: 100px;
            height: 100px;
            margin: 20px auto;
        }
        
        .dollar-spinner span {
            position: absolute;
            font-size: 24px;
            font-weight: bold;
            color: #4CAF50;
            animation: spin 2s linear infinite;
            transform-origin: 50px 50px;
        }
        
        .dollar-spinner span:nth-child(1) { animation-delay: 0s; }
        .dollar-spinner span:nth-child(2) { animation-delay: 0.33s; }
        .dollar-spinner span:nth-child(3) { animation-delay: 0.66s; }
        .dollar-spinner span:nth-child(4) { animation-delay: 0.99s; }
        .dollar-spinner span:nth-child(5) { animation-delay: 1.32s; }
        .dollar-spinner span:nth-child(6) { animation-delay: 1.65s; }
        
        @keyframes spin {
            0% {
                transform: rotate(0deg) translateY(-40px) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: rotate(360deg) translateY(-40px) rotate(-360deg);
                opacity: 0.5;
            }
        }
        
        /* Стили для аккордеона */
        .accordion-item {
            margin-bottom: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .accordion-header {
            padding: 15px;
            background-color: #f9f9f9;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .accordion-header:hover {
            background-color: #eee;
        }
        
        .accordion-content {
            padding: 0 15px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: white;
        }
        
        .accordion-item.active .accordion-content {
            max-height: 500px;
            padding: 15px;
        }
        
        /* Стили для отображения города */
        .city-display {
            margin: 20px 0;
            padding: 10px;
            background-color: #e9f7ef;
            border-radius: 5px;
            text-align: center;
        }


/* Основные стили для футера */
.site-footer {
  /*  background-color: #f5f5f5; */
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    font-family: Arial, sans-serif;
    color: #333;
}

.footer-content {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 15px;
    text-align: justify;
}

/* Стили для текста в футере */
.footer-post {
    font-size: 14px;
    line-height: 1.5;
    margin: 10px 0;
    color: #666;
    text-align: center;
}

.footer-text:last-child {
    margin-bottom: 0;
}

/* Стили для ссылок и разделителя */
.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.footer-link {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #0056b3;
}

.footer-separator {
    font-size: 14px;
    color: #666;
}


/* Стили для заголовка */
.accordion-header {
    width: 100%;
    padding: 15px;
    text-align: left;
    font-size: 18px;
    color: #333;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #e0e0e0;
}

/* Стили для содержимого */
.accordion-content {
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
    display: none; /* Скрыто по умолчанию */
}

/* Стили для активного элемента */
.accordion-item.active .accordion-content {
    display: block; /* Показываем содержимое */
}

.accordion-item.active .accordion-header {
    background-color: #007bff;
    color: #fff;
}


/* Основные стили для блока */
.city-block {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Стили для текста */
#city-name {
    font-weight: bold;
    color: #007bff;
}
