.mainSection {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5px;
    padding: 20px;
}

.container {
    text-align: justify;
    background-color: #f5f0f0;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    flex: 1;
    min-width: 250px;
    max-width: 45%;
}

.container h3 {
    color: #844f6b;
    text-align: center;
    margin-bottom: 10px;
}

.container p {
    color: #333;
    line-height: 1.5;
}

.italic {
    font-style: italic;
}

strong {
    font-weight: lighter;
}

.bold {
    font-weight: bold;
}

.underline {
    text-decoration: underline;
}

.center {
    text-align: center;
}

@media (max-width: 768px) {
    .mainSection {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .container {
        max-width: 90%;
        margin: 10px 0;
    }
}
