* {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.6;
}

ul li {
    list-style: none;
}

main {
    margin: 80px 10px;
}

h1, h2 {
    color: #008000;
}

header {
    height: 50px;
    width: 100%;
    background: #000000;
    color: #FFFFFF;
    display: flex;
    position: fixed;
    top: 0;
    z-index: 999;
}

.logo img {
    height: 50px;
    width: 50px;
}

.hamburger-btn, .open-search-btn {
    height: 50px;
    width: 50px;
    border: none;
    background: transparent;
    color: #FFFFFF;
    cursor: pointer;
}

.header-buttons {
    display: flex;
    margin-left: auto;
    gap: 10px;
    
}

.feather {
  stroke-width: 1px;
}

nav {
    background: #E0E0E0;
    width: 310px;
    height: calc(100vh - 50px);
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    position: fixed;
    top: 0;
    right: -310px;
    transition: right 0.3s linear;
    z-index: 999;
}

nav.open {
    right: 0;
}

nav ul {
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #000000;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 0.5px dotted #000000;
    font-size: 20px;
    cursor: pointer;
}

nav a:hover {
    background: #ccc;
}

nav a.active {
    color: blue;
    font-weight: bold;
    border-right: 5px solid blue;
}

.learn-more-btn {
  height: 30px;
  width: 150px;
  background: #0000ff;
  color: #ffffff;
  cursor: pointer;
  border: none;
  border-radius: 20px;
  clip-path: inset(0 round 20px); /* same curve as border-radius */
}

footer {
    background: darkslateblue;
    color: #ffffff;
    text-align: center;
    width: 100%;
}

footer p {
    margin: 5px;
}

.footer-links {
    margin: 10px 0;
}

.footer-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
}

.footer-social img {
    height: 24px;
    width: 24px;
    filter: invert(1);
    margin: 10px;
    object-fit: contain;
}

.footer-social a {
    text-decoration: none;
}

/* Search Overlay */
#searchOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s linear;
    z-index: 1000;
}

#searchOverlay.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    overflow: hidden;
}

form {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-left: 5px;
}

.search-input {
    width: 250px;
    height: 40px;
    border-radius: 10px 0 0 10px;
    padding: 10px;
    border: 0.5px solid black;
    font-size: 16px;
    outline: none;
}

.close-btn {
    background: transparent;
    color: white;
    height: 40px;
    width: 40px;
    float: right;
    border: none;
    margin-top: 20px;
    cursor: pointer;
}

.search-input:focus {
    border: 0.5px solid blue;
}

.search-btn {
    width: 40px;
    height: 40px;
    border-radius: 0 10px 10px 0;
    background: blue;
    color: white;
    border: none;
    cursor: pointer;
}

#results {
    margin: 10px;
}

.result {
    padding: 10px 0;
    border-bottom: 1px solid #ccc; /* border for the whole result */
}

.result a {
    text-decoration: none;
    color: blue;
    font-size: 20px;
    display: block; /* puts title on its own line */
    margin-bottom: 5px;
}

.result p {
    margin: 0;
    color: white;
    font-size: 16px;
}

/*Faqs Container*/
.question-container {
    display: block;
    margin auto;
    height: auto;
}

.question-container img {
    height: 100%;
    width: 100%;
}

.question-container a {
    text-decoration: none;
    color: blue;
    font-size: 24px;
    cursor: pointer;
}

.question-container img:hover {
    background: none;
    border: 1px dotted #000000;
}

.ugomtv-logo-container {
    height: auto;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.ugomtv-logo-container img {
    height: 150px;
    width: 150px;
    border-radius: 5px;
    
}