/* Reset some default styles */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

h2 {
    color: #003f94;
}

header {
    background: #003f94;
    color: #fff;
    padding: 10px 0;
}



header h1 {
    float: left;
    margin-left: 20px;
}

header nav {
    float: right;
    margin-right: 20px;
}

header ul {
    list-style: none;
}

header ul li {
    display: inline;
    margin-left: 20px;
}

header ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: url('images/hero-image.jpg') no-repeat center center/cover;
    color: #fff;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
}

.logo {
    width: 150px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
}

.cta-button {
    background: #ff3333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
}

.cta-button:hover {
    background: #e60000;
}

.about, .services, .gallery, .testimonials, .contact {
    padding: 40px 0;
    text-align: center;
}

.service-list {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.service-item {
    width: 30%;
}

.gallery-images {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.gallery-images img {
    width: 30%;
    margin: 10px 0;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact input, .contact textarea {
    width: 100%;
    max-width: 500px;
    margin: 10px 0;
    padding: 10px;
}

.contact button {
    padding: 10px 20px;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.contact button:hover {
    background: #ff3333;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
