body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {

    padding: 10px 20px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    flex: 1;
}


 
 
 
.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.header-link {
    color: black;
    text-decoration: none;
    font-size: 14px;
    padding: 4px 8px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    
}

.header-link:hover {
    background-color: #f0f0f0;
}

/* General Page Styles */
.main {
    text-align: center;
    padding: 50px 20px;
}

.brand {
    font-size: 48px;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
}

.brand-link {
    font-size: 26px; /* Increased font size */
    font-weight: bold;
}

search-container-left
{    
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 5px;
    position: relative;
    width: 300px;
    margin: 0 auto;
}

.search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
    width: 300px;
    margin: 0 auto;
}

.search-box {
    width: 400px; /* Set the desired width */
    max-width: 100%; /* Ensure it doesn't exceed the page width */
 
}

.search-box input[type="text"] {
    padding: 10px 40px 10px 10px;
    font-size: 16px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.search-box .search-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.search-box .search-button img {
    width: 20px;
    height: 20px;
}

#searchResults {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    background-color: #fff;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 150px;
    overflow-y: auto;
    z-index: 1000;
}



.search-suggestion {
    cursor: pointer;
    padding: 10px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
}

.search-suggestion:last-child {
    border-bottom: none;
}

.search-suggestion:hover {
    background-color: #e9e9e9;
}

/* Suggested Pages Styles */
.suggested-pages {
    margin-top: 150px; /* Increase space between search box and suggested pages */
    text-align: left;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    color: #666;
}

.suggested-pages h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #666;
    font-weight: normal;
}

.suggested-pages ul {
    list-style: none;
    padding: 0;
}

.suggested-pages ul li {
    margin-bottom: 5px;
}

.suggested-pages ul li a {
    color: #666;
    text-decoration: none;
    cursor: pointer;
    display: block;
    padding: 10px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.suggested-pages ul li a:hover {
    background-color: #e9e9e9;
    color: blue;
}

/* Footer Styles */
footer {
    border-top: 1px solid #ccc;
    color: black;
    text-align: center;
    padding: 10px 0;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    width: 100%;
    margin-top: auto;
}

.footer-content {
    display: flex;
    gap: 15px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.footer-text {
    color: black;
    text-decoration: none;
    cursor: default;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-text:hover {
    background-color: #f0f0f0;
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

footer p {
    margin: 0;
}

.new-body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.new-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;

}

.new-header-title {
    font-size: 2.5em;
    color: #444;
    text-align: center;
    margin-bottom: 20px;
}


.new-content {

}

.new-section-title {
    font-size: 1.5em;
    color: #555;
    margin-top: 20px;
    margin-bottom: 5px;
}

.new-text-content, .new-text-content ul {
    margin-bottom: 1em;
    text-align: justify;
}

.new-text-content ul {
    padding-left: 20px;
}

