.content1 {
    padding: 20px; /* Add padding around the content */
    /* max-width: 900px; Limit the width for readability */
    margin:  auto; /* Center the content and add top margin */
    text-align: left; /* Align text to the left for professionalism */
    font-family: 'Arial', sans-serif; /* Set a clean, professional font */
    line-height: 1.6; /* Increase line spacing for readability */
    background-color: white !important; /* Use your main background color */
    border-radius: 10px; /* Add a slight curve for modern design */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a light shadow for depth */
    background-image: none;
}

.content1 h1 {
    font-size: 2rem; /* Mobile-friendly header size */
    color: #2c3e50; /* Professional dark gray color */
    margin-bottom: 10px;
    text-align: center; /* Center the title */
}

.content1 p {
    font-size: 1rem; /* Mobile-first font size */
    color: #34495e; /* Darker gray for readability */
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .content1 h1 {
        font-size: 2.5rem; /* Larger header for wider screens */
    }

    .content1 p {
        font-size: 1.2rem; /* Increase paragraph size for readability */
    }
}



@media (max-width: 768px) {
    .content1 {
        padding-top: 0px; /* Adjust top padding for the navbar height */
        min-height: calc(190vh - 0px); /* Ensure full viewport height minus navbar */

    }

    .content1 h1 {
        margin-top: 10px; /* Add slight margin for better spacing */
    }
}

.navbar {
    background-color: rgba(185, 182, 182, 0.5);
}