﻿.title-box {
    border-bottom-width: 1px;
    margin-bottom: 40px;
    position: relative;
}
.title-box.text-center:before {
    left: 50%;
    margin-left: -20px;
}
.title-box:before {
    background: #1e1e1e;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    margin: 0 0 -1px;
    position: absolute;
    width: 40px;
}
    .title-box h1.title, .title-box .h1.title {
        font-size: 24px;
        margin: 0 0 12px 0;
    }

.title-box .title {
    color: #F7931D;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 12px 0;
    padding: 14px 0 0;
}
/* General Styling */
.panel-group {
    width: 100%;
    max-width: 800px; /* Adjust width as needed */
    margin: auto;
}

.panel {
    border: none;
    box-shadow: none;
    margin-bottom: 5px;
}

    /* Active Panel (Open) */
    .panel.active {
        background-color: #F7931E; /* Orange background for active panel */
        color: white;
    }

        .panel.active .panel-heading {
            background-color: #F7931E;
            color: white;
        }

/* Panel Heading */
.panel-heading {
    background-color: #F2F2F2; /* Light grey background for closed panels */
    padding: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
}

/* Panel Title (Text inside heading) */
.panel-title a {
    text-decoration: none;
    color: inherit;
    flex-grow: 1;
}

/* Plus/Minus Icons */
.panel-title::before {
    content: "+";
    color: #F7931E; /* Orange color for icon */
    font-size: 20px;
    font-weight: bold;
    margin-right: 10px;
}

/* Change to Minus when Active */
.panel.active .panel-title::before {
    content: "−";
    color: white;
}

/* Panel Body */
.panel-body {
    background-color: white;
    padding: 10px 0 10px 1px;
    font-size: 14px;
    color: #333;
}

/* Hover Effect */
.panel-heading:hover {
    background-color: #EAEAEA;
}
