body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.homepage-header {
    background-color: #4CAF50; /* Green background */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
}

.header-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
}

.main-nav a {
    color: white;
    margin: 0 1em;
    text-decoration: none;
}

header h1 {
    margin: 0;
}

.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 70vh; /* Makes slider half the screen height */
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* Assuming 3 slides, adjust if more */
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.slide img {
    width: 100%;
    height: 70vh;
    object-fit: cover; /* Ensures the image covers the area */
}

main {
    display: flex;
    justify-content: space-around;
    margin: 2em 0;
}

.subpage {
    flex: 1;
    margin: 0 1em;
    text-align: center;
}

.subpage h2 {
    margin-top: 0;
}

.subpage a {
    display: inline-block;
    margin-top: 0.5em;
    padding: 0.5em 1em;
    background-color: #4CAF50; /* Green button color */
    color: white;
    text-decoration: none;
}

.subpage a:hover {
    background-color: #45a049; /* Darker green on hover */
}

.about-contact {
    display: flex;
    justify-content: space-between;
    align-items: left;
    background-color: #f0f0f0;
    padding: 4em 0;
    text-align: left;
}

.about-us, .contact-us {
    flex: 1;
}

.about-us h2, .contact-us h2 {
    margin-bottom: 1em;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.small-text {
    font-size: 0.8em; /* Smaller font size for about us and contact us sections */
    color: #333; /* Dark text color */
}




.contact-us a {
    display: inline-block;
    margin-top: 1em;
    padding: 0.5em 1em;
    background-color: #4CAF50; /* Green button color */
    color: white;
    text-decoration: none;
    text-align: right;

}

.contact-us a:hover {
    background-color: #45a049; /* Darker green on hover */
}

.contact-form label {
    display: block;
    margin-top: 1em;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.5em;
    margin-top: 0.5em;
    box-sizing: border-box;
    
}

.contact-form button {
    margin-top: 1em;
}
