* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5f5f5;
    color: #4e2e74;
    line-height: 1.6;
}

.top-nav {
    background-color: #4e2e74;
    padding: 0px;
    text-align: right;
}

.top-nav ul {
    list-style: none;
}

.top-nav ul li {
    display: inline;
    margin: 0 15px;
}

.top-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.top-nav ul li a:hover {
    text-decoration: none;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 20px;
}

.header-top .logo-img {
    order: -1;
}

.logo img {
    height: 40px; 
    width: auto; 
}


.search-bar {
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%); 
    display: flex;
    width: 100%; 
    max-width: 500px; 
}

.search-bar input[type="text"] {
    flex: 1; 
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.search-bar button {
    padding: 10px;
    border: none;
    background-color: #4e2e74;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

nav {
    background-color: #4e2e74;
    padding: 15px 0;
    text-align: center;
}

.main-nav {
    list-style: none;
}

.main-nav li {
    display: inline;
    margin:  0 20px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

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

.banner {
    position: relative;
}

.banner-image {
    width: 100%;
    height: auto;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 7);
    text-align: center;
    font-family:  'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.about-us {
    background-color: white;
    padding: 50px;
    margin: 20px auto;
    width: 90%;
    max-width: 1000px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-us h1 {
    font-size: 36px;
    color: black;
    margin-bottom: 20px;
    text-align: center;
}

.about-us h2 {
    font-size: 28px;
    color: black;
    margin-top: 30px;
    margin-bottom: 10px;
}

.about-us p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-us strong {
    color: black;
    font-weight: bold;
}

@media screen and (max-width: 768px){
    .banner-text {
        font-size: 24px;
    }

    .about-us h1 {
        font-size: 24px;
    }

    .about-us h2 {
        font-size: 24px;
    }

    .about-us p {
        font-size: 16px;
    }

    .search-bar input {
        width: 150px;
    }
}

.footer {
    background-color: #4e2e74;
    height: 50px;
    position: relative;
    bottom: 0;
    width: 100%;
}