/* profile.css */

.profile-container {
    padding: 40px 60px;
    background-color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.section {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.section.reverse {
    flex-direction: row-reverse;
}

.section img {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.img-left, .img-right {
    flex: 1;
}

.text-right, .text-left {
    flex: 1;
}

.text-right h2, .text-left h2 {
    color: #003366;
    margin-bottom: 10px;
    font-size: 24px;
    border-bottom: 2px solid #ff6600;
    display: inline-block;
    padding-bottom: 5px;
}

.text-right p, .text-left p {
    color: #444;
    line-height: 1.7;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
    .section,
    .section.reverse {
        flex-direction: column;
    }
}
