body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    font-size: 16px; 
    line-height: 1.6; 
    color: #333;
    background-color: #f4f4f4;
    padding: 0;
}

/* Header */
.header {
    background: rgba(128, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    margin-right: 10px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.nav ul {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: white;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: red;
}

/* Search Bar */
.search-container {
    display: flex;
    align-items: center;
    position: relative;
}

#searchInput {
    padding: 0.5rem;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-left: 2rem;
    width: 200px;
}

#searchInput:focus {
    outline: none;
    border-color: maroon;
}

.search-icon {
    position: absolute;
    right: 10px;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

.search-icon:hover {
    color: red;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background-color: #ffffff;
    color: #000000;
    max-width: 800px; /* Keeps it readable on larger screens */
    margin: 0 auto;
}

h2 {
    font-size: 2rem;
    color: maroon;
    margin-bottom: 1rem;
    text-align: center;
}

p {
    text-indent: 2rem; /* Indent like a formal essay */
    text-align: justify; /* Clean, block-like text */
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: black;
    color: white;
    text-align: center;
    padding: 1.5rem 0; 
    font-size: 1rem; 
}
