body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

header {
    background: #008080;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
	position: fixed;  /* Make the header fixed */
    top: 0;           /* Position it at the top */
    left: 0;
    width: 100%;      /* Make sure it spans the full width of the page */
    z-index: 1000;    /* Ensure it's on top of other elements */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

header h1 {
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

#hero {
    background: url('hero-imag.jpg') no-repeat center center/cover;
    color: #333;
    padding: 5rem 0;
    text-align: center;
}

#hero h2 {
    margin: 0 0 1rem;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn {
    background: #e8491d;
    color: #fff;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}

#services, #about, #contact {
    padding: 2rem 0;
    text-align: center;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.service {
    margin-bottom: 2rem;
}

.service h3 {
    margin-bottom: 1rem;
}

#contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form textarea {
    height: 150px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

footer p {
    margin: 0;
}