.main-content {
    width: 60%; /* Reduced width from 80% to 60% */
    min-height: 500px; /* Increased minimum height */
    margin: 20px auto;
    background-color: white;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    color: #333;
}

.main-content h1 {
    text-align: center;
    color: #007bff;
    margin-bottom: 30px;
    font-size: 3em;
    font-weight: 600;
}

.main-content p {
    margin-bottom: 25px;
    font-size: 1.2em;
}

.main-content strong {
    font-weight: 600;
    color: #222;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-content {
        width: 95%; /* Maintain full width on smaller screens */
        min-height: auto; /* Remove fixed height on smaller screens */
        padding: 20px;
    }

    .main-content h1 {
        font-size: 2.5em;
        margin-bottom: 20px;
    }

    .main-content p {
        font-size: 1.1em;
        margin-bottom: 15px;
    }
}