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


.top-bar {
    background-color: #4e2e74;
    height: 30px;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
    height: 100%;
}

.top-nav {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-nav li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9em;
}

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


header {
    background-color: #fff;
    padding: 15px 0;
    position: relative; 
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    position: relative; 
}


.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;
}

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

.center-nav {
    display: inline-flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.center-nav li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    font-weight: bold;
}

.center-nav li a:hover {
    color: #ccc;
}

.hero {
    position: relative;
    text-align: center;
}

.hero img {
    width: 100%;
    height: auto;
}

.contact-us {
    padding: 40px;
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-us h1 {
    color: #3B3355;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.contact-us p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a img {
    width: 40px; 
    transition: transform 0.3s;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

.newsletter {
    background-color: #4e2e74;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

.newsletter label {
    font-weight: bold;
    margin-right: 10px;
}

.newsletter input[type="email"] {
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    margin-right: 5px;
    width: 250px;
}

.newsletter button {
    padding: 10px 20px;
    background-color: #4e2e74;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.newsletter button:hover {
    background-color: #6E6893;
}


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

footer p {
    margin: 0;
    font-size: 0.9em;
}
