body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #333;
}

.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.logo span {
    font-size: 1.5em;
    font-weight: bold;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
    font-size: 0.9em;
}

.main-nav a:hover {
    text-decoration: underline;
}

.visit-us-btn {
    background-color: #8B4513; /* Brown color */
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 0.9em;
    border-radius: 5px;
}

.visit-us-btn:hover {
    background-color: #A0522D;
}

.content-area {
    padding: 20px 50px;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-around; /* Adjust as needed */
    margin-top: 30px;
    background-color: #f9f9f9; /* Light background for the hero section */
    padding: 40px;
    border-radius: 8px;
}

.hero-image img {
    max-width: 400px; /* Adjust as needed */
    height: auto;
    border-radius: 8px;
}

.hero-text {
    max-width: 500px; /* Adjust as needed */
}

.hero-text h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}
