/* ========================================
   BROOKINGS PAGES – PROFESSIONAL STYLING
   ======================================== */

/* ----- Page Header with Overlay ----- */
.brookings-page-header {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: #1a2e1a;
    color: #ffffff;
}

.brookings-page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.brookings-page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

.brookings-page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 12px;
}

.brookings-page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ----- Section Container ----- */
.brookings-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.brookings-content h2 {
    font-size: 2rem;
    color: #1a2e1a;
    margin-bottom: 20px;
    position: relative;
}

.brookings-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #e96642;
}

/* ----- Intro Section (Two Column) ----- */
.brookings-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.brookings-intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.brookings-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.brookings-intro-image img:hover {
    transform: scale(1.02);
}

/* ----- Content Containers ----- */
.brookings-container {
    background-color: #f9f6f3;
    padding: 30px 35px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #e96642;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.brookings-container h3 {
    font-size: 1.4rem;
    color: #1a2e1a;
    margin-bottom: 12px;
}

.brookings-container p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.brookings-container ul,
.brookings-container ol {
    padding-left: 24px;
    margin: 12px 0;
}

.brookings-container li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #4a4a4a;
}

/* ----- Service Include Row (Image + List) ----- */
.brookings-service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.brookings-service-list ul {
    list-style: none;
    padding: 0;
}

.brookings-service-list li {
    padding: 10px 0 10px 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23e96642' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") left center no-repeat;
    background-size: 16px;
    border-bottom: 1px solid #f0ebe6;
    color: #4a4a4a;
}

.brookings-service-list li:last-child {
    border-bottom: none;
}

.brookings-service-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ----- Contact Info Box ----- */
.brookings-contact-box {
    background: #1a2e1a;
    color: #ffffff;
    padding: 40px 50px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
}

.brookings-contact-box h3 {
    color: #e96642;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.brookings-contact-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

.brookings-contact-box a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.brookings-contact-box a:hover {
    color: #e96642;
}

.brookings-contact-box i {
    color: #e96642;
    width: 28px;
    margin-right: 8px;
}

/* ----- FAQ Section ----- */
.brookings-faq h3 {
    font-size: 1.2rem;
    color: #1a2e1a;
    margin-top: 24px;
    margin-bottom: 8px;
}

.brookings-faq p {
    color: #4a4a4a;
    line-height: 1.7;
}

/* ----- Responsive Design ----- */
@media (max-width: 992px) {
    .brookings-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .brookings-service-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .brookings-intro-image {
        order: -1;
    }

    .brookings-service-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .brookings-page-header {
        min-height: 250px;
    }

    .brookings-page-header h1 {
        font-size: 1.8rem;
    }

    .brookings-page-header p {
        font-size: 1rem;
    }

    .brookings-content {
        padding: 40px 16px;
    }

    .brookings-content h2 {
        font-size: 1.6rem;
    }

    .brookings-container {
        padding: 20px 22px;
    }

    .brookings-contact-box {
        padding: 30px 20px;
    }

    .brookings-service-list li {
        padding: 8px 0 8px 28px;
    }
}

@media (max-width: 480px) {
    .brookings-page-header {
        min-height: 200px;
    }

    .brookings-page-header h1 {
        font-size: 1.5rem;
    }

    .brookings-content h2 {
        font-size: 1.3rem;
    }

    .brookings-content h2::after {
        width: 40px;
    }
}