* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
  }
  
  body {
    background-color: #f4f4f4;
    color: #333;
  }
  
  header {
    background-color: #1f1f1f;
    padding: 20px;
    text-align: center;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  .section {
    padding: 100px 0;
    text-align: center;
  }
  
  .container {
    width: 90%;
    margin: 0 auto;
  }
  
  .profile-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  
  .profile-text {
    max-width: 600px;
    text-align: left;
  }
  
  .profile-text h1 {
    font-size: 3rem;
    color: #333;
  }
  
  .profile-text h2 {
    font-size: 2rem;
    color: #9C27B0;
    margin-bottom: 20px;
  }
  
  .profile-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
  }
  
  .profile-image img {
    max-width: 380px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
  }
  
  .social-icons img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
  }
  
  .social-icons img:hover {
    transform: scale(1.2);
  }
  
  footer {
    background-color: #1f1f1f;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
  }
  