/* Reset and basic styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f5f5f5;
}

header {
    width: 100%;
    background-color: white; /* Changed to white */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    width: 80%;
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    max-width: 150px;
    cursor: pointer;
}

.search-box {
    display: flex;
    align-items: center;
}

.search-box input[type="text"] {
    width: 300px;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    outline: none;
    flex: 1;
}

.search-box input[type="text"]:focus {
    border-color: #0078d7;
}

.search-box button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #0078d7;
    color: white;
    border: none;
    border-radius: 5px;
    margin-left: 5px;
    cursor: pointer;
    flex-shrink: 0;
}

.search-box button:hover {
    background-color: #005bb5;
}

.content-container {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}

.content-container h2 {
    margin-top: 0;
    font-size: 24px;
    color: #333;
    border-bottom: 2px solid #0078d7;
    padding-bottom: 10px;
}

.content-container p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

footer {
    width: 100%;
    background-color: #0078d7;
    color: white;
    padding: 10px 0;
    text-align: center;
    margin-top: auto;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}
