/* Global Blog Typography */
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6,
.post-title h1 {
    font-family: "Cinzel", serif;
    text-transform: uppercase;
}

.post-content a {
    color: #d4af37;
    text-decoration: underline !important;
}

.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    font-size: 26px;
    margin-bottom: 16px;
}

/* Space out lists dynamically */
.post-content ul li {
    margin-bottom: 12px;
    color:#dddddd;
    font-size:16px;
}
.post-content p{
    color:#dddddd;
    font-size:16px;
}
tbody tr td {
    color: #dddddd;
    font-size:16px;
}
.post-content {
    border-bottom: 1px solid #ffffff26;
}
.faq-accordion {
    padding-bottom: 80px;
}

/* --------------------------------------
   FAQ Title Styling
----------------------------------------*/
.faq-title {
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    margin-top: 100px !important;
    margin-bottom: 30px !important;
}

.faq-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: #d4af37;
    /* Luxury Gold */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* --------------------------------------
   Premium Dark-Themed FAQ Accordion
----------------------------------------*/
.faq-accordion .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.faq-accordion .accordion-button {
    background-color: transparent;
    color: #ffffff;
    font-family: "Cinzel", serif;
    font-size: 20px;
    font-weight: 500;
    padding: 20px 0;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #d4af37;
    /* Subtle Luxury Gold for open state */
    background-color: transparent;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
    filter: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    filter: none;
}

.faq-accordion .accordion-body {
    padding: 0 0 25px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
}