body {
    font-family: Arial, sans-serif;
    direction: rtl;
    text-align: right;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #666;
    color: white;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    flex-direction: column;
}

.profile-pic img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid white;
    margin-bottom: 10px;
}

.info h1 {
    margin: 0;
    font-size: 20px;
}

.info h2 {
    margin: 0;
    font-size: 16px;
    font-weight: normal;
}

.content {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.section {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
}

h3 {
    border-bottom: 2px solid #666;
    padding-bottom: 5px;
    font-size: 18px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 5px 0;
    padding-left: 10px;
    position: relative;
}

ul li::before {
    content: "";
    color: #666;
    position: absolute;
    right: 0;
}

/* تحسين العرض على الشاشات الصغيرة */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    .profile-pic img {
        width: 70px;
        height: 70px;
    }

    .info h1 {
        font-size: 18px;
    }

    .info h2 {
        font-size: 14px;
    }

    h3 {
        font-size: 16px;
    }
}