.main-content {
    margin: 0;
    padding-left: 0;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.faq-container {
    padding: 30px;
    padding-bottom: 0;
    font-family: "Roboto";
    flex: 1;
    margin:20px;
}

.faq-container .header {
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.faq-container h1 {
    color: #0B459C;
    font-family: "Playfair Display";
    font-size: 40px;
    margin: 0;
    text-align: center;
}

.faq-container h4 {
    color: #1C1C1C;
    font-family: "Playfair Display";
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 15px;
    text-align: center;
}

.faq-container .search {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    width: 100%;
}

.faq-container .search form {
    display: flex;
    width: 100%;
    max-width: 600px;
    position: relative;
}

.faq-container .search input {
    padding: 14px 50px 14px 20px;
    font-size: 16px;
    border: 1px solid #E5E5E5;
    width: 100%;
    font-weight: 400;
    color: #707070;
    background-color: #FCFCFC;
}

.faq-container .search input::placeholder {
    color: #707070;
}

.faq-container .search button {
    background: transparent;
    border: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #707070;
}

.faq-container ul {
    list-style-type: none;
    padding: 0;
}

.faq-section-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #fff;
}

.section-title {
    color: #0B459C;
    font-family: "Playfair Display";
    font-size: 32px;
    font-style: normal;
    font-weight: 550;
    line-height: normal;
    margin-top: 20px;
    margin-left: 30px;
}

.faq-box {
    border-bottom: 1px solid #eee;
    padding: 10px 5px;
}

.faq-box:last-child {
    border-bottom: none;
}

.faq-box .question {
    font-weight: 500;
    font-family: "Roboto";
    color: #000000;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 15px;
    align-items: center;
    margin-left: 30px;
    position: relative;
    padding-left: 40px;
}


.faq-box .question::before {
    position: absolute;
    left: 15px;
    color: #0B459C;
    font-weight: bold;
    font-family: "Roboto";
}

.faq-box .toggle-icon {
    display: flex;
    align-items: center;
}

.faq-box .toggle-icon svg {
    vertical-align: middle;
    cursor: pointer;
}

.faq-box .answer {
    font-size: 16px;
    color: #494949;
    padding: 0 15px 15px;
    display: none;
    line-height: 1.6;
    font-family: "Roboto";
    margin-left: 50px;
}

.faq-box .answer.open {
    display: block;
}

.faq-footer {
    text-align: center;
    margin-top: 40px;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -20px;
    padding: 40px 20px;
    background-color: #0B459C;
    color: white;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

.faq-footer h3 {
    font-family: "Playfair Display";
    font-size: 32px !important;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 500;
}

.faq-footer p {
    font-family: "Roboto";
    font-size: 20px;
    margin-bottom: 20px;
}

.faq-footer a {
    color: white;
    text-decoration: underline;
}

.download-btn {
    display: inline-block;
    background-color: white;
    color: #333 !important;
    text-decoration: none !important;
    padding: 8px 20px;
    border-radius: 4px;
    margin-top: 10px;
    font-weight: 500;
    font-size: 14px;
    text-transform: none;
    font-family: "Roboto";
}

.dashboard-content {
    padding:0;
}

.dark-theme .dashboard-content {
    background-color: #323232;
}
.dark-theme .faq-container h1 {
    color: #E0E0E0;
}
.dark-theme .faq-container h4{
    color: #E0E0E0;
}
.dark-theme .faq-container .search input {
    background-color: #434343;
    border: 1px solid #757575;
}
.dark-theme .faq-section-box {
    background-color: #434343;
    border: 1px solid #757575;
}
.dark-theme .faq-box .question{
    color: #CCCCCC;
}
.dark-theme .faq-box .answer{
    color: #B3B3B3;
}
.dark-theme .section-title {
    color: #E0E0E0;
}
.dark-theme .faq-box {
    border-bottom: 1px solid #757575;
}
.dark-theme .faq-box:last-child {
    border-bottom: none;
}