.custom-header {
    background: #ffffff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 100px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu ul li {
    display: inline;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
.form-section {
    margin-top: 120px; /* Ensures form does not get hidden by fixed header */
    padding: 40px;
    text-align: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.book-visit {
    background: #d32f2f;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.book-visit:hover {
    background: #b71c1c;
}
