﻿.content-area {
    background-color: #ffffff; /* White background for the content area */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 960px; /* Adjust max-width as needed */
    margin: 2rem auto; /* Center the content area */
    line-height: 1.6;
    color: #333; /* Darker text for readability */
}

.content-area h3 {
    /*color: #333;*/
    font-size: 2.2em;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 1rem;
}

.content-area h6 {
    /*color: #333;*/ 
    font-size: 1.2em;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.content-area p {
    margin-bottom: 1rem;
}

.content-area ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1rem;
}

.content-area ul li {
    margin-bottom: 0.5rem;
}

.content-area strong {
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-area {
        padding: 1rem;
        margin: 1rem;
    }
    .content-area h3 {
        font-size: 1.8em;
    }
}