.page-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.row-container {
    display: flex;

    gap: 40px;
}
.odd {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .row-container {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px !important;
    }
    .row-content {
        max-width: 100% !important;
    }
}
.row-container {
    margin: 0 1.5rem;
}
.row-content {
    max-width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.row-content h2{
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.row-content p {
    font-size: 1.25rem;
    color: #636363;
}
.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px; /* optional styling */
}