body {
    font-family: 'Afacad', sans-serif;
    background-color: #f9f9f9;
}

.blog-post {
    background: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.widget {
    margin-bottom: 30px;
}

.widget h5 {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.blog-button {
    background-color: #BE0B3200;
    font-size: 18px;
    font-weight: 700;
    line-height: 1em;
    color: #be0b32;
    border-style: solid;
    border-width: 1px;
    gap: 30px;
    border-color: #be0b32;
    padding: 10px 17px 10px 17px;
    text-decoration: none;
    transition: .5s;
    position: relative;
}

.blog-button:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 50%;
    opacity: 0;
    background-color: #be0b32;
    border-radius: 0;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.blog-button:hover:before {
    z-index: 1;
    left: 0;
    right: 0;
    opacity: 1;
}

.blog-button:hover .blog-button-text {
    color: #fff;
}

.blog-button-text {
    position: relative;
    z-index: 2;
}

.list-unstyled a {
    color: #000;
    transition: .5s;
}

.list-unstyled a:hover {
    color: #002768;
}

.breadcrumb-item a {
    color: #002768;
}
.accordion {
    margin: auto;
    border-radius: 5px;
    --bs-accordion-border-color: transparent !important;
    --bs-accordion-border-width: 0px !important;
}
  
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    background-color: #f9f9f9;
    margin-top: 20px;
}

.accordion-header span {
    color: #002768;
    font-weight: 600;
    line-height: 25px;
    font-size: 18.2px;
    letter-spacing: 0;
}
  
.accordion-header:hover {
    background-color: #e9e9e9;
}
  
.accordion-content {
    display: none;
    padding: 15px;
    font-size: 18px;
    background-color: #fff;
}
  
.icon {
    font-size: 25px !important;
}

.icon.active {
    color: #be0b32;
}