/* تحسين الخطوط والألوان */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    display: block;
    margin: 0 auto;
    width: 100px;
    height: auto;
    border-radius: 50%;
}

h1, h2, h5 {
    text-align: center;
    color: #2c3e50;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 20px 0;
}

.personal-info, .technical-skills {
    line-height: 1.6;
    margin-bottom: 20px;
}

.personal-info b, .technical-skills b {
    color: #2980b9;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

a {
    color: #2980b9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img[src="me.jpg"] {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}