
body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    text-align: center;
    padding: 50px;
}
.container {
    max-width: 700px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
    color: #333333;
}
p {
    font-size: 18px;
    color: #555555;
}
.phone {
    font-size: 32px;
    font-weight: bold;
    margin-top: 10px;
    color: #000000;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 20px;
    margin-top: 10px;
}

.contact-item .icon {
    font-size: 26px;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.warning-text {
    color: red;
}


