.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #f8f8f8;
}

.contact-info a {
    margin-right: 20px;
    color: #333;
    text-decoration: none;
}

.contact-info a, .social-icons a {
    color: #333;
    text-decoration: none;
}

/* Стили для иконок Font Awesome */
.fa {
    font-size: 16px;
}
.instagram-style-icon {
    position: relative;
    width: 40px;
    height: 40px;
    border: solid 5px #E1306C;
    border-radius: 10px; /* Slightly rounded corners for the square */
    display: inline-block;
}

.inner-circle {
    position: absolute;
    width: 70%;
    height: 70%;
    background-color: white;
    border: solid 5px #E1306C;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.outer-dot {
    position: absolute;
    width: 15%;
    height: 15%;
    background-color: #E1306C;
    border-radius: 50%;
    top: 5%;
    right: 8%; /* Positioning the dot outside the square */
}

