.service-category {
    background-color: #f0941c;
    color: white;
    font-weight: bold;
    padding: 10px;
    border-radius: 8px 8px 0 0;
}
.sidebar {
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    overflow: hidden;
}
.sidebar ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.sidebar li {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    transition: background 0.3s;
}
/* Sidebar Service List */
.sidebar ul li {
    color: #9a562a; /* Set the text color */
    font-weight: bold;
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    border-bottom: 1px solid #ddd;
}
.sidebar li:hover,
.sidebar li.active {
    background: #fde6d3;
    color: #f0941c;
}

/* Change bullet point color */
ul li::marker {
    color: #9a562a; /* Set the bullet color */
    font-size: 1.2em; /* Optional: Adjust size */
    font-weight: bold; /* Optional: Make it bolder */
}

.content-section {
    padding: 20px;
}
.contact-card .contact-help,
.contact-card .contact-email {
    color: #f0941c !important; /* Force override */
}

.highlight {
    color: #f0941c;
    font-weight: bold;
}
.contact-support-wrapper {
    margin-top: 20px; /* Adds spacing from sidebar */
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between the boxes */
}

.support-box,
.contact-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.support-box p {
    font-size: 16px;
    color: #3c3c3b;
    margin-bottom: 10px;
}

.support-box button {
    background-color: #f0941c;
    color: white;
    border: none;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    width: 40%;
}

.support-box button:hover {
    background-color: #9a562a;
    color: #ffffff;
}
/* Contact Card Styles */
.contact-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    text-align: left;
}

/* Contact Title with Orange Bar */
.contact-title {
    font-size: 18px;
    font-weight: bold;
    color: #9a562a;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Orange Bar on the Left */
.contact-bar {
    display: inline-block;
    width: 5px;
    height: 18px;
    background-color: #f0941c;
}

/* Divider */
.contact-card hr {
    border: none;
    border-top: 1px solid #9a562a;
    margin: 10px 0;
}

/* Contact Details */
.contact-card p {
    margin: 5px 0;
    font-size: 14px;
    color: #3c3c3b;
}

/* Email Link */
.contact-card a {
    color: #3c3c3b;
    text-decoration: none;
}

.contact-card a:hover {
    color: #f0941c;
}

.service-image {
    width: 843px !important;
    height: 319px !important;
    object-fit: cover; /* Ensures the image fills the area without distortion */
    border-radius: 8px; /* Optional: Adds rounded corners */
}
