body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.profile-container {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem 2rem;
    padding: 1rem;
    gap: 2rem;
}

/* Left Sidebar */
.profile-left {
    flex: 1 1 250px;
    background: #fff;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.profile-left h2 {
    margin: 0.5rem 0 0.2rem 0;
}

.profile-left p {
    margin: 0;
    color: #555;
}

/* Right Content */
.profile-right {
    flex: 2 1 600px;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.profile-right h3 {
    margin-top: 0;
}

.other-data p {
    color: #555;
}

/* Responsive for tablets/mobile */
@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
    }

    .profile-left, .profile-right {
        flex: 1 1 100%;
    }
}
