/* --- FIRE RATED LETTERBOXES PAGE STYLES --- */

/* Ensures the HR element is clean and centred */
.fr-divider {
    border: 0;
    height: 1px;
    background: #ccc;
    width: 60%; /* Make it visually distinct and shorter than the content */
    margin: 40px auto; /* Centre it and provide good spacing */
    clear: both; /* Crucial: clears any floating elements above it */
}

/* General image styling within the content area */
.fr-product-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 15px auto; /* Centre image and add bottom margin */
    box-sizing: border-box;
}

/* The secondary visual is slightly smaller */
.fr-secondary-visual {
    max-width: 60%;
    margin-top: 20px;
}

/* Styling for the Technical Table for better readability */
.fr-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.fr-spec-table th {
    background-color: #f5f5f5; /* Light grey background for header */
    padding: 10px;
    text-align: left;
}

.fr-spec-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
}

/* Styling for Headings and Lists for better spacing */
.fr-section-title {
    color: #333;
    margin-top: 35px;
    margin-bottom: 15px;
    /* Optional visual element, adjust if needed: */
    border-bottom: 1px solid #ddd; 
    padding-bottom: 5px;
}

.fr-feature-heading {
    color: #555;
    margin-top: 20px;
    margin-bottom: 10px;
}

.fr-feature-list {
    margin-bottom: 30px;
    padding-left: 25px;
}

.fr-feature-list li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Styling for the Crucial Notice/CTA Section */
.fr-notice-heading {
    color: #cc0000; /* Red colour to highlight the importance */
    border-left: 5px solid #cc0000;
    padding-left: 10px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.fr-notice-text {
    background-color: #fff0f0; /* Light red background for context */
    padding: 15px;
    border: 1px solid #f0cccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.fr-cta-text {
    font-size: 1.1em;
    font-weight: bold;
    color: #004d99; /* A strong blue colour for the call to action */
    padding: 20px 0;
    text-align: center;
}

/* Modular Images container and sizing */
.fr-modular-images-container {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    clear: both; /* Ensure it doesn't float next to other elements */
}

.fr-modular-image {
    max-width: 48%; /* Allows two images side-by-side */
    height: auto;
    margin: 1%;
    display: inline-block;
}

/* Responsive adjustment for mobile screens */
@media (max-width: 600px) {
    .fr-modular-image {
        max-width: 100%;
        display: block;
        margin: 15px auto;
    }
}