/* Audits Page Styling */

/* Hero Section */
.audits-hero {
    background-color: var(--nexus-black);
    padding: 50px 0;
}

.audits-hero-title {
    color: var(--nexus-orange);
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.2;
    text-transform: none;
}

@media (max-width: 768px) {
    .audits-hero-title {
        font-size: 1.5rem;
    }

    .audits-hero {
        padding: 20px 0;
    }

    .audits-hero-img-box {
        height: 180px !important;
    }
}

.audits-hero-img-box {
    background-color: transparent !important;
    height: 350px;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.audits-hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Section */
.audits-content-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.audits-text-main {
    font-weight: 600;
    color: #111;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.audits-divider {
    border-top: 1px solid var(--nexus-orange) !important;
    opacity: 1;
    margin: 25px 0;
}

.audits-subheading {
    color: #111;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    text-transform: none;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.audits-text {
    font-weight: 600;
    color: #111;
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Square List */
.nexus-square-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.nexus-square-list li {
    position: relative;
    padding-left: 20px;
    font-weight: 600;
    color: #111;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.nexus-square-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: var(--nexus-orange);
}

/* FAQ Section */
.audits-faq-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.audits-faq-title {
    color: var(--nexus-orange);
    text-transform: none;
    font-weight: 700;
    font-size: 1.8rem;
    margin-top: 0px;
    margin-bottom: 15px;
}

.audits-faq-box {
    border: 2px solid var(--nexus-orange);
    border-radius: 40px;
    padding: 25px 30px;
    text-align: left;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
}

.audits-faq-q-orange {
    background-color: var(--nexus-orange);
    color: black;
    padding: 12px 20px;
    border-radius: 10px 10px 0 0;
    font-weight: 700;
    font-size: 1.05rem;
}

.audits-faq-q-grey {
    background-color: #b5b5b5;
    color: #111;
    padding: 12px 20px;
    border-radius: 10px 10px 0 0;
    font-weight: 700;
    font-size: 1.05rem;
}

.audits-faq-a {
    border: 1px solid #ccc;
    border-top: none;
    padding: 15px 20px;
    border-radius: 0 0 10px 10px;
    font-weight: 600;
    color: #111;
    background-color: #fff;
    font-size: 1rem;
}