body {
    font-family: fontbody, Arial, Helvetica, sans-serif;
    background-color: #f9f9f9;
}

.header {
    background-color: #6fb706;
    color: #fff;
    padding: 20px 0;
    position: relative;
}

.header h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.header h2 {
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;;
}

.container a.pg_title {
    text-decoration: none;
    color:#fff;
}

.logo-container {
    position: absolute;
    top: 10px;
    left: 20px;
}

.logo-container img {
    max-width: 150px;
}

.search-bar {
    margin: 30px 0;
    position: relative;
    /*width:66%;*/
}

.search-bar .fa-search {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.search-bar input {
    width: 100%;
    /*padding: 15px 20px;*/
    padding: 15px 35px;
    border-radius: 50px;
    border: 1px solid #ddd;
}

.search-bar .search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.category-link{
    text-decoration: none;
    color:#666;
}

.help-category {
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
    height:13rem;
}

.help-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.help-category h5 {
    font-size: 1.2rem;
    margin: 10px 0;
    font-weight: bold;
    color:#6fb706;
}

.help-category small {
    color: #888;
}

.help-category img {
    max-width: 30px;
    margin-bottom: 10px;
}

.help-category .author-info {
    /*font-size: 0.85rem;
    margin-top: 10px;
    color:#000;*/
	font-size: 1rem;
    margin-top: 10px;
    color:#858181;
}

.footer {
    padding: 20px;
    text-align: center;
    color: #666;
    background-color: #333;
    color: #fff;
}

.small-chevron {
    font-size: 12px;
    color: #6fb706;
    margin-right: 5px;
    transition: transform 0.2s ease-in-out;
}

.small-chevron:hover {
    transform: scale(1.2);
    color: #4c8f00;
}

.highlight {
    background-color: #fff;
    font-weight: bold;
    color:#6fb706;
}

.autocomplete-results {
    border: 1px solid #ddd;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 5px;
    background-color: #fff;
    display: none;
}

.autocomplete-item {
    padding: 10px;
    cursor: pointer;
    text-align: left;
    border-bottom:1px solid #6fb706;
}

.autocomplete-item a{
    text-decoration: none;
    color:#000;
}

.autocomplete-item:hover {
    /*background-color: #f1f1f1;*/
    color:#000;
    background-color: #aada63;
            border-color:#6fb706;
}