/* Article Section Styles */
article.mt-5 {
    background-color: #fff;
    padding: 20px;
    line-height: 1.8; 
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Heading Styles */
article.mt-5 h2, 
article.mt-5 h3, 
article.mt-5 h4 {
    margin-bottom: 20px;
    padding-bottom: 10px;
}

article.mt-5 h2 {
    font-size: 2em;
    color: #000080;
    border-bottom: 2px solid #1976d2;
}

article.mt-5 h3 {
    font-size: 1.7em;
    color: #008000;
    margin-top: 20px;
}

article.mt-5 h4 {
    font-size: 1.5em;
    color: #800000;
}

/* Paragraph and List Styles */
article.mt-5 p, 
article.mt-5 ol, 
article.mt-5 ul li {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Indented Paragraph Styles */
.indented {
    margin-left: 20px;
    font-size: 1.2em;
    text-align: center;
}

ul.mt-3 {
    padding-left: 20px; /* Set padding or margin as needed */
    margin: 0; /* Reset default margin */
}

/* Highlight and Emphasis Styles */
.highlight, .highlight-box {
    background-color: #f0f4f1;
    border-left: 3px solid #388e3c;
    padding: 15px;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.cta-link {
    color: #1976d2;
    text-decoration: none;
}
.cta-link:hover {
    text-decoration: underline;
}


/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}
footer a {
    color: #fff;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* Image Styles */
.img-fluid, 
.responsive-img, 
.image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.image-container img {
    max-height: 80vh; /* 80% of the screen height */
}

@media (max-width: 992px) {
    article.mt-5 h2 { font-size: 1.75em; }
    article.mt-5 h3 { font-size: 1.4em; }
    article.mt-5 p { font-size: 1.2em; }
    .cta-section, .highlight-box {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    article.mt-5 h2 { font-size: 1.5em; }
    article.mt-5 h3 { font-size: 1.3em; }
    article.mt-5 p { font-size: 1.2em; }
    .cta-section, .highlight-box {
        padding: 12px;
    }
}
img {
    max-width: 100%; /* Ensures the image scales down to fit its container */
    height: auto; /* Maintains the aspect ratio */
    
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.4;
    font-size: 16px;
    margin: 0;
    padding: 0;
}



/* Quote Box Styles */
.quote-box {
    background-color: #fff8e1; /* Light yellow for quote box */
    border-left: 4px solid #ffab00; /* Bright yellow for emphasis */
    padding: 10px 15px;
    margin: 20px 0;
    font-style: italic;
    text-align: center;
}

/* Section Heading Styles */
h2 {
    color: #00796b; /* Dark teal for headings */
    margin-bottom: 15px; /* Space below headings */
}

h3 {
    color: #00796b; /* Dark teal for subheadings */
    margin: 15px 0 10px; /* Space around subheadings */
}



ul {
    padding-left: 20px; /* Indent for list items */
}

a {
    color: #00796b; /* Link color */
    text-decoration: underline; /* Underline for links */
}



