body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
  }
  
  a {
    color: #5918df;
    text-decoration: none;
  }
  
  .container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
  }
  
  header {
    background: #fafafa;
    padding: 20px 0;
  }
  
  .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
  }
  
  .nav-links a {
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 600;
  }
  
  .logo {
    font-size: 1.5em;
    font-weight: 700;
  }
  
  .hero {
    text-align: center;
    margin-top: 60px;
  }
  
  .hero h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
  }
  
  .hero h1 span {
    color: #5918df;
  }
  
  .btn {
    display: inline-block;
    background: #5918df;
    color: #fff;
    padding: 0.7em 1.2em;
    border-radius: 5px;
    font-size: 0.9em;
    margin-top: 1em;
  }
  
  .btn:hover {
    background: #4a0fc5;
  }
  
  section h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
    text-align: center;
  }
  
  section p {
    max-width: 700px;
    margin: 0 auto 1em auto;
    text-align: center;
  }
  
  #about .about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
  }
  
  .about-text,
  .about-image {
    flex: 1 1 300px;
    min-width: 300px;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 8px;
  }
  
  .alt-bg {
    background: #f5f5f5;
  }
  
  .skills-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
  }
  
  .skills-list li {
    background: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  
  .projects-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 40px;
  }
  
  .project-card {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
  }
  
  .project-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  
  .btn-small {
    display: inline-block;
    background: #5918df;
    color: #fff;
    padding: 0.5em 1em;
    border-radius: 5px;
    font-size: 0.8em;
    margin-top: 1em;
  }
  
  .btn-small:hover {
    background: #4a0fc5;
  }
  
  #contact p a {
    color: #5918df;
    font-weight: 600;
  }
  
  .social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
  }
  
  footer {
    background: #fafafa;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
    color: #555;
  }
  
  /* Responsive adjustments */
  @media(max-width: 768px) {
    .nav-links {
      flex-direction: column;
      background: #fafafa;
      position: absolute;
      right: 20px;
      top: 60px;
      border: 1px solid #ddd;
      padding: 10px;
      display: none;
    }
    
    .nav-links.show {
      display: flex;
    }
    
    .nav-bar {
      position: relative;
    }
    
    .logo {
      flex: 1;
    }
    
    /* Simple responsive nav toggle (optional) */
    /* You could add a hamburger icon and toggle this class with JS. */
  }
  
  /* Additional customizations can follow. */  