*{
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    background-color: #f8f8f8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.brand {
    display: flex;
    flex-direction: row;
    align-items: center;
}
header img {
    height: 100px;
    margin-right: 10px;
}
.hpanel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
nav {
    display: flex;
    align-items: center;
}
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    line-height: 0;
}
.menu-toggle .icon-close {
    display: none;
}
.menu-toggle.active .icon-open {
    display: none;
}
.menu-toggle.active .icon-close {
    display: block;
}
.book_appointment{
    background-color: #ab00e8;
    padding: 10px 20px;
    border-radius: 5px;
}
.book_appointment a{
    color: white;
    text-decoration: none;
}
ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px 15px;

}
ul li{
    padding: 10px 0;
}
header h1{
    font-size: 24px;
    color: #333;
}
header h2{
    font-size: 20px;
    color: #666;
}
.active a {
    background:linear-gradient(45deg,#ffff,#ab00e8,#8103af,#ffffff);
    /* background-color: #ab00e8; */
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
}
ul li a:hover {
    background:linear-gradient(45deg,#ffff,#3e867b,#236359,#ffffff);
    /* background-color: #3e867b; */
    color: white;
    border-radius: 5px;
}
footer {
    background-color: #222;
    color: #ccc;
    padding: 50px 40px 20px;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.footer-col {
    flex: 1;
    min-width: 220px;
}
.footer-col h3 {
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.footer-col p {
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 10px;
}
.footer-brand span {
    color: #999;
    font-size: 13px;
}
.footer-col a {
    color: #ccc;
    text-decoration: none;
}
.footer-col a:hover {
    color: #ab00e8;
}
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #333;
    color: #ccc;
}
.footer-social a:hover {
    background-color: #ab00e8;
    color: #fff;
}
.footer-helpline strong {
    color: #fff;
    font-weight: bold;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    font-size: 14px;
}
.footer-map {
    min-width: 260px;
}
.footer-map-frame {
    width: 100%;
    height: 180px;
    border: 0;
    border-radius: 6px;
    filter: grayscale(20%) invert(90%) contrast(90%);
}
.footer-copy {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
}
@media (max-width: 768px) {
    footer {
        padding: 40px 20px 20px;
    }
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0px 15px;
        flex-wrap: wrap;
    }
    header img {
        height: 60px;
    }
    header h1 {
        font-size: 18px;
    }
    header h2 {
        font-size: 14px;
    }
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background-color: #f8f8f8;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 10px 20px 20px;
    }
    nav ul.open {
        display: flex;
    }
    nav ul li {
        padding: 12px 0;
        border-bottom: 1px solid #e5e5e5;
    }
    nav ul li:last-child {
        border-bottom: none;
    }
    .book_appointment {
        margin-top: 10px;
        text-align: center;
    }
    .menu-toggle {
        display: block;
    }
}