.sidebar {
    height: 100%;
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #f0f0f0;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar li {
    margin-bottom: 10px;
    border-bottom: 2px solid #ccc;
}

.sidebar a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    font-family: "Arial", sans-serif;
    transition: background-color 0.5s ease
}

.sidebar a:hover {
    background-color: #E03737;
    color: white;
    transition-property: background-color, color;
    transition-duration: 0.5s;

}

.sidebar .logo-link {
    padding: 0;
    text-decoration: none;
    color: inherit;
    font-weight: normal;
    font-size: inherit;
    transition: none;
}

/* Стили для логотипа */
.sidebar img {
    width: 250px;
    height: auto;
    display: block;
    position: relative;
    margin-bottom: 10px;
    top: 0;
}

.sidebar-bottom {
    align-items: center;
    margin-top: 70px;
    border-radius: 15px;
}

.telegram-button, .payment-button {
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
}

.telegram-button {
    background-color: #E03737;
}

.payment-button {
    background-color: #E03737;
}

.sidebar .telegram-button:hover {
    background-color: #981919;
}

.sidebar .payment-button:hover {
    background-color: #981919;
}

.sidebar .telegram-button, .sidebar .payment-button {
    color: white;
    font-size: 22px;
    font-family: "Arial", sans-serif;
}

/* Отступ справа для контента */
.content {
    margin-left: 250px;
    padding: 20px;
}

.content h1 {
    border-bottom: 2px solid #ccc;
    text-align: center;
    font-family: "Arial", sans-serif;
}

.house-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.house-list li {
    margin-bottom: 10px;
}

.house-list li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    font-family: "Arial", sans-serif;
    border-bottom: 2px solid #ccc;
    transition: background-color 0.5s ease;
}

.house-list li a:hover {
    background-color: #981919;
    color: white;
    transition-property: background-color, color;
}