/* --- Main Content Container --- */
.islam-page-content {
    /* Centers the main content block and limits its width */
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
}

/* --- Header Section (Title/Prophecies Block) --- */
.prophecies-header {
    text-align: center;
    padding: 60px 0 40px 0; /* Add vertical padding for separation */
}

.section-subtitle {
    /* Style for "Fulfilled Prophecies" or "Understanding Islam" */
    color: #90ee90; /* A lighter green color */
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.page-title {
    /* The large, bold, green text for the main title */
    color: #003366; /* A dark, mossy green color, adjust to match the image exactly */
    font-size: 3em; /* Large size */
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

/* Responsive adjustment for title on smaller screens */
@media (max-width: 600px) {
    .page-title {
        font-size: 2em;
    }
}

.release-date {
    font-size: 0.9em;
    color: #aaaaaa; /* Lighter grey for subtle text */
    margin-bottom: 25px;
}




/* --- Article Body Content --- */
.main-body-content {
    /* Align text to the left for readability in the body */
    text-align: left;
    padding: 20px 0;
    line-height: 1.6;
    font-size: 1.1em;
}

.content-heading {
    color: hsl(220, 24%, 12%); /* Keep headings a lighter green */
    margin-top: 30px;
    margin-bottom: 15px;
}

p, ul, ol {
    margin-bottom: 20px;
}

ul, ol {
    padding-left: 20px;
}

/* --- Note/Call-to-Action Section --- */
.article-note {
    /* Box style for the note section */
    border-left: 5px solid #6c8a74; /* Green border on the left */
    background-color: #2a2a2a; /* Slightly lighter dark background */
    padding: 15px;
    margin: 30px 0;
}

.article-note p {
    margin: 0;
    font-style: italic;
    font-size: 1em;
}

.cta-link {
    /* Style for the "Buy our book" link */
    color: #90ee90;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s;
}

.cta-link:hover {
    color: #ffffff;
}