/* Container */
.container {
    margin: 0 auto;
    padding: 20px;
    max-width: 800px;
}

/* Subject Styling */
.subject {
    font-size: 2em;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: right;
    color: #2c3e50;
}

/* Date Published */
.date-published {
    font-size: 0.9em;
    color: #7f8c8d;
    margin-bottom: 30px;
    text-align: right;
}

/* Section Headings */
.section-heading {
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2980b9;
    text-align: right;
}

/* Content Styling */
.question-content, .answer-content {
    background-color: #f9f9f9;
    padding: 20px;
    border-right: 5px solid #2980b9;
    margin-bottom: 20px;
    text-align: right;
}

.question-content p, .answer-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #2c3e50;
}

/* Button Styling */
.button-container {
    text-align: center;
    margin-top: 40px;
}

.button-container .btn {
    width: 200px;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .subject {
        font-size: 1.5em;
    }

    .section-heading {
        font-size: 1.3em;
    }

    .question-content p, .answer-content p {
        font-size: 1em;
    }
}
