/* Your current CSS */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#f4f7fb;
}

nav{
    background:#0d6efd;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
}

nav ul{
    list-style:none;
    display:flex;
}

nav ul li{
    margin-left:25px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-size:18px;
}

.hero{
    display:flex;
    justify-content:space-around;
    align-items:center;
    padding:70px;
}

.text{
    width:45%;
}

.text h1{
    font-size:55px;
    color:#0d6efd;
    margin-bottom:20px;
}

.text p{
    font-size:22px;
    color:#555;
    line-height:35px;
}

button{
    background:#0d6efd;
    color:white;
    border:none;
    padding:15px 30px;
    margin-top:25px;
    margin-right:15px;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
}

button:hover{
    background:#084298;
}

.image img{
    width:450px;
    border-radius:20px;
}

.container{
    width:90%;
    margin:40px auto;
    text-align:center;
}

table{
    width:100%;
    border-collapse:collapse;
    background:white;
}

table th{
    background:#0d6efd;
    color:white;
    padding:15px;
}

table td{
    padding:12px;
    border:1px solid #ddd;
}

table tr:nth-child(even){
    background:#f2f2f2;
}

table tr:hover{
    background:#e9f3ff;
}

h1{
    color:#0d6efd;
    margin-bottom:20px;
}

/* ==========================================
   ADD THIS ENTIRE SECTION BELOW YOUR CSS
   ========================================== */

.services{
    padding:80px 10%;
    background:#ffffff;
}

.services h2{
    text-align:center;
    font-size:42px;
    color:#0d6efd;
    margin-bottom:50px;
}

.service-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.12);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.service-card h3{
    padding:15px;
    color:#0d6efd;
    font-size:24px;
}

.service-card p{
    padding:0 15px 20px;
    color:#555;
    line-height:26px;
}

/* ABOUT SECTION */

.about{
    padding:80px 10%;
    background:#f4f7fb;
    text-align:center;
}

.about h2{
    color:#0d6efd;
    font-size:40px;
    margin-bottom:20px;
}

.about p{
    font-size:20px;
    color:#555;
    line-height:32px;
}

/* CONTACT SECTION */

.contact{
    padding:80px 10%;
    background:white;
}

.contact h2{
    text-align:center;
    color:#0d6efd;
    margin-bottom:40px;
    font-size:40px;
}

.contact p{
    font-size:20px;
    margin:15px 0;
}

/* APPOINTMENT FORM */

.appointment{
    padding:80px 10%;
    background:#f4f7fb;
}

.appointment h2{
    text-align:center;
    color:#0d6efd;
    margin-bottom:40px;
    font-size:40px;
}

.appointment form{
    max-width:700px;
    margin:auto;
}

.appointment input,
.appointment textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:17px;
}

.appointment textarea{
    height:120px;
}

.appointment button{
    width:100%;
}

/* FOOTER */

footer{
    background:#0d6efd;
    color:white;
    text-align:center;
    padding:20px;
}
.form-label{
    display:block;
    text-align:left;
    margin:15px 0 8px;
    font-size:18px;
    font-weight:bold;
    color:#0d6efd;
}
/* Mobile Responsive */
@media (max-width: 768px) {

    nav {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-top: 10px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .hero .text {
        width: 100%;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 18px;
    }

    .hero img {
        width: 250px;
        margin-top: 25px;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}