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

header {
    background: linear-gradient(45deg, #0d47a1, #1976d2);
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
}

header h1 {
    margin: 0;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin-left: 2rem;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #ffeb3b;
}

.hero {
    background: url('image.webp') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.hero .container {
    max-width: 800px;
}

.services, .about {
    padding: 4rem 0;
    background-color: #fff;
    margin: 2rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #1976d2;
}

.services h2, .about h2, .contact h2 {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 1.5rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.service-item {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-item img {
    max-width: 50px; /* Adjust this value for smaller icon size */
    height: auto;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 1rem;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.about {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    text-align: center;
    color: #1976d2;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.contact {
    background-color: #f9f9f9;
    padding: 4rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    width: 100%;
}

.contact .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact form input,
.contact form textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.contact form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact form button {
    padding: 0.75rem;
    background: #1976d2;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-end;
}

.contact form button:hover {
    background: #0d47a1;
}

/* Footer Styles */
footer {
    background-color: #fff;
    color: #333;
    text-align: center;
    padding: 2rem 1rem;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #ddd;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

footer ul li a {
    color: #1976d2;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: #0d47a1;
}

footer ul li {
    display: inline;
}

footer .social-icons {
    margin-top: 1rem;
}

footer .social-icons a {
    margin: 0 0.5rem;
    color: #1976d2;
    font-size: 1.2rem;
    transition: color 0.3s;
}

footer .social-icons a:hover {
    color: #0d47a1;
}