body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
  }
  
  .container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
  }
  
  header {
    background: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
  }
  
  header nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
  }
  
  .section {
    background: #fff;
    margin: 20px 0;
    padding: 20px;
    border-radius: 6px;
  }
  
  footer {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 20px;
  }
  .movie-list {
    list-style: none;
    padding-left: 0;
    font-size: 1rem;
  }
  
  .movie-list li {
    margin-bottom: 10px;
  }
  
  .movie-list a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .movie-list a:hover {
    color: #0d47a1;
    text-decoration: underline;
  }

  .about-container {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .profile-pic {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  .about-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .about-text {
      padding: 0 10px;
    }
  
    .about-image img {
      width: 150px;
      height: 150px;
    }
  }

  #contact {
    background: #fff;
    margin: 20px 0;
    padding: 20px;
    border-radius: 6px;
  }
  
  #contact h2 {
    margin-top: 0;
  }
  
  #contact ul {
    list-style: none;
    padding-left: 0;
  }
  
  #contact li {
    margin-bottom: 10px;
    font-size: 1rem;
  }
  
  #contact a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
  }
  
  #contact a:hover {
    color: #0d47a1;
    text-decoration: underline;
  }