.appointment-page{
    background: url('media/Pasted image (3).png');
    background-size: cover
}
.appointment-page {
    background-image: url("../media/Pasted image (3).png"); /* Update with your image path */
    background-size: cover;
    background-position: center;
}
.appointment-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-size: cover;
    box-sizing: border-box;
}

.appointment-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    width: 100%;
}

.form-title {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
    color: #222;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.appointment-form label {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: #444;
}

.appointment-form input,
.appointment-form select {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 5px;
}

.appointment-form button {
    background-color: #ff6b00;
    color: white;
    padding: 14px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.appointment-form button:hover {
    background-color: #e35a00;
}
@media screen and (max-width: 768px) {
    .header-address,
    .header-right {
        display: none !important; /* 🚫 скрываем в шапке */
    }
@media (max-width: 500px) {

    .appointment-box {
        padding: 30px 20px;
    }
}

footer {
    background-color: #333;
    color: #fff;
    padding: 30px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left, .footer-center, .footer-right {
    flex: 1 1 30%;
    margin: 10px;
    text-align: center;
}

.footer-center {
    text-align: center;
}

.footer-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-right a {
    margin: 0 10px;
}

.footer-right img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.footer-right img:hover {
    transform: scale(1.2);
}

.footer-left p, .footer-center p {
    font-size: 14px;
}

.footer-center p {
    font-weight: bold;
    margin-top: 10px;
}

.map-container {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
}
footer iframe {
    border: none;
    width: 100%;
    height: 200px;
}