
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color:white;
}

header {
    background-color:rgb(189,190,77);
    color: #fff;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'monospace', 'serif';
}

.logo img {
    height: 100px;
    width: 100px;
}
.home a {
    color: #fff;
    text-decoration: none;
    margin-top: 50px;
    font-size: 18px;
    margin-left: 25px;
    transition: color 0.3s;
}

.home a:hover {
    color:rgba(0, 0, 0, 0.205); /* Hover effect for navigation links */
}

/* Main Content Styles */
.main-part {
    text-align: center;
    padding: 50px 20px;
    color: black;
   
}

.main-part h1 {
    font-size: 36px;
    color:black;
    margin-bottom: 20px;
}

.about-us h2 {
    font-size: 28px;
    color:black;
    margin-bottom: 20px;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 10px;
}

.about-us p {
    font-size: 16px;
    line-height: 1.5;
    color:black;
    margin-bottom: 20px;
}

.about-us p:last-child {
    margin-bottom: 0;
}

/* Footer Styles */
footer {
    background-color:rgb(189,190,77);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}
