/* Updated layout container */
.content-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center; /* Center sections horizontally */
    align-items: flex-start; /* Align content at the top */
    gap: 20px; /* Space between sections */
    max-width: 1200px; /* Constrain the total width */
    margin: 0 auto; /* Center the container on the page */
    padding: 20px; /* Add padding around the edges */
}

/* About us section */
.about-us {
    flex: 1; /* Allow this section to grow/shrink as needed */
    max-width: 600px; /* Constrain the width */
    padding: 20px;
    text-align: center;
}

.about-us h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-us p {
    font-size: 18px;
    line-height: 1.6;
}

.about-us-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Responsive adjustusnts for smaller screens */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column; /* Stack sections vertically */
        align-items: center; /* Center-align sections */
        padding: 10px;
    }

    .about-us, .socials {
        width: 100%; /* Full width on smaller screens */
        max-width: none; /* Remove the max width */
        text-align: center; /* Ensure text stays centered */
    }
}
