body {
    font-family: Arial, sans-serif;
    background: url('../img/background.svg') no-repeat center center/cover;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    direction: rtl;
}

.container {
    text-align: center;
    /* background: rgba(255, 255, 255, 0.1); */
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.logo {
    margin-bottom: 30px;
}

.logo img {
    width: 180px;
}

h1 {
    margin: 10px 0 30px;
    font-size: 24px;
    color: #5d3c2c;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #8b5e3c;
    color: white;
    padding: 12px 40px;
    margin: 10px 0;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item i {
    background: white;
    color: #8b5e3c;
    border-radius: 50%;
    padding: 8px;
    font-size: 16px;
    position: absolute;
    left: 46px;
}

.contact-item a {
    color: white;
    text-decoration: none;
}