* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #27b7f5, #2750f5, #6527f5);
  }
  
  header {
    background-color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 10px;
  }
  
  header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .nav-link {
    text-decoration: none;
    color: #2877f5;
    font-weight: bold;
    padding: 5px 10px;
  }
  
  .nav-link:hover {
    text-decoration: underline;
  }
  
  .resume-button {
    text-decoration: none;
    background-color: #dd480c;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
  }
  
  .resume-button:hover {
    opacity: 0.8;
  }
  
  #intro {
    text-align: center;
    color: white;
    padding: 50px 20px;
  }
  
  #intro h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  #intro p {
    font-size: 1.2rem;
  }
  
  #home-projects {
    text-align: center;
    padding: 50px 20px;
    color: white;
  }
  
  .home-projects-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 20px;
  }
  
  .home-project-card {
    width: 336px;
    height: 413px;
    background-color: rgba(255, 255, 255, 0.86);
    border-radius: 15px;
  }
  
  #projects-page {
    text-align: center;
    color: white;
    padding: 50px 20px;
  }
  
  #projects-page h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .projects-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  
  .project-item {
    width: 80%;
    max-width: 800px;
    text-align: left;
  }
  
  .project-placeholder {
    width: 100%;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.86);
    border-radius: 15px;
    margin-bottom: 15px;
  }
  
  #about-page {
    padding: 50px 20px;
    color: white;
  }
  
  .about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
  }
  
  .about-photo {
    width: 300px;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.86);
    border-radius: 15px;
  }
  
  .about-text {
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  footer {
    background-color: white;
    text-align: center;
    padding: 20px;
  }