body {
    font-family: sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 20px;
}

.logo img {
    max-height: 100px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    margin-right: 20px;
}

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

nav ul li a {
    color: #fff;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    background-color: #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
}

.hero-content {
    flex: 1;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.hero-image {
    flex: 1;
    max-width: 30%;
    padding: 20px;
}

.hero-image img,
.photo-placeholder img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
}

.intro-section {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    flex-direction: column;
}

.intro-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
    flex-basis: auto;
    /* Ensure heading takes full width in a flex container */
}

.intro-section p {
    flex: 2;
    color: #555;
    margin-right: 20px;
    margin-left: 20px;
}

.intro-section .photo-placeholder {
    flex: 1;
    max-width: 300px;
}

.services-section {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.services-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

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

.service-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.service-item p {
    color: #555;
    margin-bottom: 15px;
}

.service-item .photo-placeholder.small {
    max-width: 60%;
    margin: 0 auto;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    position: sticky;
    /* Or fixed, depending on your preference */
    bottom: 0;
    width: 100%;
}
footer img {
    max-height: 40px;
    margin-right: 10px;
}

.lic_no {
    margin-top:0px;
    font-size: 0.9rem;
    color: #ffffff;
}