* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Logo Styling */
.logo {
    width: 150px; /* Adjust width as needed */
    height: auto;
    display: inline-block;
    margin-right: 20px; /* Space between logo and text */
    vertical-align: middle;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background: #333;
    color: #677ebe;
    padding: 20px 0;
}

header h1 {
    text-align: center;
    font-size: 2.5em;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
}

.hero {
    background: url('rs.png') no-repeat center center;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5em;
}

.services {
    padding: 50px 0;
    background-color: #f4f4f4;
}

.services h2 {
    text-align: center;
    margin-bottom: 20px;
}

.service-item {
    margin-bottom: 30px;
}

.service-item h3 {
    font-size: 1.8em;
    color: #333;
}

.appointments, .contact {
    padding: 50px 0;
}

.appointments form, .contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.appointments input, .appointments select, .contact textarea, .contact input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    border-radius: 5px;
}

button:hover {
    background-color: #555;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    font-size: 1.1em;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero h2 {
        font-size: 2em;
    }

    .service-item h3 {
        font-size: 1.5em;
    }

    .appointments form, .contact form {
        width: 100%;
    }
}
