body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    /* Убираем отступы у body */
    overflow: hidden;
    /* Предотвращаем прокрутку */
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Размещаем под контентом */
    background-image: url("img/background.png");
    /* Замените на путь к вашему изображению */
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.container {
    /*background-color: #fff;*/
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 500px;
    /* Делаем контент поверх изображения */
    z-index: 1;
    /* opacity: 0.7; */
}

/* Остальные стили остаются без изменений */
.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo img {
    max-width: 400px;
}

.contact-info h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-group i {
    margin-right: 10px;
    color: #555;
    width: 20px;
    text-align: center;
}

.contact-group p {
    margin: 0;
    color: #333;
}