:root {
    --primary-color: #333333;
    --secondary-color: #666666;
    --background-color: #ffffff;
    --subtle-color: #f5f5f5;
    --accent-color: #4a4a4a;
    --border-color: #e0e0e0;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--background-color);
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  /* Header and title */
  h1 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
  }
  
  /* Navigation */
  nav {
    display: flex;
    margin-bottom: 40px;
  }
  
  nav > a {
    margin-right: 25px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.2s ease;
  }
  
  nav > a:hover {
    border-bottom: 1px solid var(--accent-color);
    color: var(--accent-color);
  }
  
  /* Sections */
  section {
    margin-bottom: 50px;
  }
  
  section h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
  }
  
  /* About me section */
  #aboutme {
    overflow: hidden; /* Clearfix for the floating image */
  }
  
  .profile-photo {
    float: right;
    width: 180px;
    height: 180px;
    border-radius: 2%;
    margin-left: 30px;
    margin-bottom: 15px;
    object-fit: cover;
    border: 1px solid var(--border-color);
  }
  
  #aboutme p {
    margin-bottom: 15px;
    font-size: 1rem;
    max-width: 650px;
  }
  
  /* Education and skills */
  .storypoint {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    margin-bottom: 25px;
  }
  
  .skill {
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--primary-color);
  }
  
  .description {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  /* List styling */
  ul {
    list-style-type: none;
  }
  
  li {
    margin-bottom: 25px;
  }
  
  li:last-child {
    margin-bottom: 0;
  }
  
  /* Projects section */
  #projects .storypoint {
    margin-top: 15px;
  }

  /* Footer styling */
  footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .contact-item:hover {
    color: var(--accent-color);
  }
  
  .contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    opacity: 0.7;
  }
  
  .copyright {
    text-align: center;
    margin-top: 25px;
    font-size: 0.8rem;
    color: var(--secondary-color);
  }
  
  /* Responsive adjustments */
  @media (max-width: 700px) {
    .storypoint {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    
    nav {
      flex-wrap: wrap;
    }
    
    nav > a {
      margin-bottom: 10px;
    }
    
    /* Profile photo repositioning for mobile */
    .profile-photo {
      float: none;
      display: block;
      margin: 0 auto 20px;
      width: 150px;
      height: 150px;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
      }
  }