
/* Reset and basic styling */
body, h1, h2, h3, p, ul, li, a, ol {
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #333;
    line-height: 1.6;
}
header {
    background-color: #002855; /* GWU official blue */
    color: #e2cb92;
    text-align: center;
    padding: 20px 0;
}
header img {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}
nav {
    background: #fff;
    border-bottom: 2px solid #002855;
    text-align: center;
    padding: 10px 0;
}
nav a {
    color: #002855;
    margin: 0 15px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
}
nav a:hover {
    text-decoration: underline;
}
.container {
    width: 90%;
    max-width: 1000px;
    background: #fff;
    margin: 20px auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.section {
    margin-bottom: 30px;
}
.section h2 {
    color: #002855;
    margin-bottom: 10px;
}
.chatbot {
    border: 2px solid #002855;
    border-radius: 5px;
    padding: 15px;
    margin-top: 10px;
    background: #fff;
}
footer {
    background: #002855; /* GWU official blue */
    color: #e2cb92;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}
ul, ol {
    margin-left: 20px;
    margin-top: 10px;
}
li {
    margin-bottom: 5px;
}

#webchat-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.bpFab {
    display: none;
}
.bpWebchat {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
}
