/*a:hover,a:focus{
    text-decoration: none;
    outline: none;
}

#accordion .panel{
    border: none;
    border-radius: 0;
    margin-bottom: 5px;
    box-shadow: none;
}

#accordion .panel-heading{
    padding: 0;
    border: none;
    border-radius: 0;
    position: relative;
}

#accordion .panel-title a{
    display: block;
    padding: 20px 30px;
    margin: 0;
    background: #e65e36;
    font-size: 17px;
    font-weight: bold;
    color: #f9e2ad;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

#accordion .panel-title a:before,
#accordion .panel-title a.collapsed:before{
    content: "";
    width: 20px;
    height: 2px;
    background: #f9e2ad;
    position: absolute;
    top: 30px;
    right: 30px;
}

#accordion .panel-title a:after,
#accordion .panel-title a.collapsed:after{
    content: "";
    width: 2px;
    height: 20px;
    background: #f9e2ad;
    position: absolute;
    bottom: 18px;
    right: 39px;
    transition: all 0.3s ease 0s;
}

#accordion .panel-title a:after{ height: 0; }

#accordion .panel-body{
    padding: 20px 30px;
    background: #56522b;
    border-top: 2px solid #000;
    font-size: 15px;
    color: #f9e2ad;
    line-height: 28px;
    letter-spacing: 1px;
}*/








/* General styles for the FAQ section */
.blog-post {
    margin: 20px 0;
}

.blog-post article {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-post h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

/* Accordion styles */
.accordions {
    border-top: 1px solid #ddd;
}

.content-title {
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-title:hover {
    background-color: #f1f1f1;
}

.content {
    padding: 15px;
    display: none;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

/* Active state for the accordion */
.content-title.active + .content {
    display: block;
}

.content-title::after {
    content: '+';
    font-size: 18px;
    transition: transform 0.3s ease;
}

.content-title.active::after {
    content: '-';
}

/* Responsive styles */
@media (max-width: 768px) {
    .blog-post article {
        padding: 15px;
    }

    .content-title {
        font-size: 16px;
    }

    .content {
        font-size: 14px;
    }
}