
.main,
.sidebar,
.faq {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px;
}
.faq {
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.faq h2 {
    font-size: 1.8em;
    color: #5d4b47;
    margin-bottom: 10px;
}
.faq h3 {
    font-size: 1.1em;
    font-weight:bold;
    color: #ab5e5a;
    margin-bottom: 10px;
    margin-left: -10px;
}


.faq ul{
    display: block;
    list-style-type: disc;

    list-style-position: outside; /* Ensures bullets/numbers stay outside */
    margin: 10px 0px;
    padding-left: 10px; /* Adds space between the edge and the text */
    text-indent: -10px; /* Negative indent pulls the first line left */
}

.sidebar ul{
    list-style-type: none;
    list-style-position: outside; /* Ensures bullets/numbers stay outside */
    margin: 10px 0px;
    padding-left: 10px; /* Adds space between the edge and the text */
    text-indent: -10px; /* Negative indent pulls the first line left */
}

.faq li {
    margin: 0 0 10px 0; /* Add spacing between list items */
    padding-left: 10px; /* Aligns all lines of text */
    text-indent: 0; /* Resets text-indent inside the <li> */
}
.faq .question {
    font-size: 1.3em;
    font-weight: bold;
    color: rgb(145, 107, 107);
    margin: 10px 0;
}
.faq .subcontents {
    font-size: 0.9em;
    color: rgb(37, 36, 36);
}

.faq .outside_link{
    
    font-weight: bold;
    color:blue;
    font-style: italic;
}

footer {
    background-color: #e8dfd8;
    color: #5d4b47;
    padding: 10px;
    text-align: center;
    font-size: 0.9em;
    border-top: 3px solid #dbcac0;
}

a {
    color: #8c766e;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #5d4b47;
}