
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}
header {
    background: #1a1a1a;
    color: white;
    padding: 20px;
    text-align: center;
}
header h1 {
    margin: 0;
    font-size: 2em;
}
nav {
    background: #333;
    padding: 10px;
    text-align: center;
}
nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}
nav a:hover {
    text-decoration: underline;
}
.container {
    width: 80%;
    margin: auto;
    padding: 20px;
}
.hero {
    background: url('images/hero.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2em;
    text-shadow: 2px 2px 4px #000;
}
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}
.services {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.service {
    width: 45%;
    background: white;
    margin: 10px 0;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}
.gallery img {
    width: 100%;
    border-radius: 5px;
}
.contact-form {
    display: flex;
    flex-direction: column;
}
.contact-form input, .contact-form textarea {
    margin: 10px 0;
    padding: 10px;
    font-size: 1em;
}
.contact-form button {
    padding: 10px;
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
}
.contact-form button:hover {
    background: #555;
}
