/* life_app/static/life_app/css/styles.css */

.navbar {
    padding: 1rem;
    background-color: #B8DFDF; /* Fancy navbar color */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    margin-right: 1rem;
}

.navbar .navbar-brand img.logo {
    width: 50px;
    height: auto;
}

.navbar a:hover {
    color: #007b7b; /* Slightly darker hover color */
}

/* Additional styles for homepage content */
.content {
    padding: 2rem;
}

/* FAQ styling */
.faq-section {
    text-align: center;
    margin-top: 2rem;
}
