/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
}

header {
    background-color: #0056a6;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header .logo img {
    max-width: 150px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.banner {
    position: relative;
    width: 100%;
    height: 400px; /* Fixed height for the banner */
    overflow: hidden;
    background-color: #000;
}

.banner img {
    width: 103%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area without distortion */
    object-position: center; /* Centers the image */
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.banner-text h1 {
    font-size: 2.5em;
    margin: 0;
}

.banner-text p {
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        height: 300px; /* Adjust height for smaller screens */
    }

    .banner-text h1 {
        font-size: 2em; /* Adjust font size for smaller screens */
    }

    .banner-text p {
        font-size: 1em;
    }
}
h2 {
    color: #0056a6;
    text-align: center;
    margin-bottom: 20px;
}

h3 {
    color: #0056a6;
}

p {
    margin: 15px 0;
    line-height: 1.6;
}

.owner-message {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 20px;
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.btn-submit {
    display: inline-block;
    background-color: #0056a6;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

.btn-submit:hover {
    background-color: #003f7a;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.contact-info p {
    margin: 10px 0;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #0056a6;
    color: #fff;
    margin-top: 20px;
}