.main-container {
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    font-family: 'Dosis', sans-serif;
    background-color: #ffffff;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    max-width: 1200px; /* Limit the maximum width */
    border-radius: 8px; /* Soften the corners */
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Softer shadow for a subtle effect */
}

.main-title {
    margin-top: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-title h1 {
    font-family: 'Dosis', sans-serif;
    font-weight: 500;
    font-size: 2.5em;
    color: #20699f;
    margin-bottom: 25px;
    text-align: center; /* Center the title */
    letter-spacing: 0.5px; /* Slightly increase letter spacing */
}


.content {
    padding: 40px; /* More padding for better spacing */
    line-height: 1.6; /* Improve readability */
    color: #333; /* Darker text for better contrast */
}

@media (max-width: 768px) {
    .main-container {
        margin-left: 20px;
        margin-right: 20px;
        padding: 15px;
    }

    h1 {
        font-size: 2em;
    }

    .content {
        padding: 20px;
    }
}
