*{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
body {
    background: #f5f5f5;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: white;
}
.navbar a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    margin: 0 15px;
}
.navbar a:hover {
    text-decoration: underline;
}

.hero img {
    width: 100%;
    height: 80vh;
}

.about, .why-us {
    width: 80%;
    margin: 40px auto;
}

.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.text {
    width: 50%;
}

.why-us h2 {
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
}

.about p, ul {
    font-size: 16px;
    color: #333;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

.content img {
    width: 40%;
    border-radius: 10px;
}

.why-us .content {
    flex-direction: row-reverse; /* To match the layout in your screenshot */
}

footer {
    background-color: #2a8b9d;
    color: white;
    padding: 30px 10%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left h2 {
    font-size: 24px;
    margin: 0;
}

.footer-left p {
    font-size: 16px;
    margin-top: 5px;
}

.footer-right p {
    margin: 5px 0;
    font-size: 16px;
}

.footer-right a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}

