body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #222;
    color: white;
    padding: 50px 0;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

header h1 {
    font-size: 36px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin-left: 20px;
    flex-grow: 1;
}

header .header-image {
    width: 300px; /* Adjust as needed */
    height: auto;
    margin-right: 20px;
}

.subtitle-container {
    text-align: center;
    background-color: white;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #222;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    width: 80%;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.ask-question {
    text-align: center;
    margin-bottom: 30px;
}

.ask-question input {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
}

.ask-question button {
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.recent-questions .question {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.continue-btn {
    display: inline-block;
    padding: 8px 15px;
    background: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 10px;
    background: #222;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}
