/* Container */
.grol-extra-content-wrapper {
    margin: 30px 0;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

/* 1. Main Heading - CENTERED */
.grol-main-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #111;
    text-transform: uppercase;
    line-height: 1.2;
    text-decoration: underline !important;
    text-align: center;
}

/* 2. Content Row Wrapper */
.grol-content-row {
    width: 100%;
    margin-bottom: 30px;
    /* Default: Block display (Full width for text only) */
}

/* IF IMAGE EXISTS: Side-by-Side Layout */
.grol-content-row.grol-has-image {
    display: flex;
    gap: 40px; /* Space between text and image */
    align-items: center; /* Vertically center the content */
    
    /* UPDATED: 'row' places Content on Left, Image on Right */
    flex-direction: row; 
}

/* Columns */
.grol-col-content {
    flex: 1; /* Takes 50% width */
}

.grol-col-image {
    flex: 1; /* Takes 50% width */
}

/* Responsive: Stack on mobile (Image on top? or Bottom?) */
@media (max-width: 768px) {
    .grol-content-row.grol-has-image {
        /* This stacks them vertically on mobile. 
           Use 'column' for Text Top / Image Bottom
           Use 'column-reverse' for Image Top / Text Bottom */
        flex-direction: column-reverse; 
        gap: 20px;
    }
}

/* 3. Sub Heading */
.grol-sub-title {
    font-size: 20px !important;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    text-underline-offset: 4px;
}

/* 4. Text Body */
.grol-text-body {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    width: 100%;
}

/* 5. Image Styling */
.grol-feature-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* 6. Accordion / Toggles */
.grol-accordion-wrapper {
    width: 100%;
    border-top: 1px solid #fff;
    margin-top: 20px;
}

.grol-acc-item {
    border-bottom: 1px solid #fff;
}

.grol-acc-header {
    width: 100%;
    background: #fec429;
    border: none;
    padding: 15px 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    transition: background 0.3s;
}

.grol-acc-header:hover {
    background: #e5b025;
}

.grol-acc-icon {
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
}

.grol-acc-body {
    display: none;
    background: #ffffff !important;
    border: 1px solid #fec429;
    border-top: none;
}

.grol-acc-inner-padding {
    padding: 20px;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
}