body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  header {
    background: #222;
    color: white;
    padding: 20px;
    text-align: center;
  }
  
  nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  nav a:hover {
    color: #ffcccb;
  }
  
  section {
    padding: 40px;
    max-width: 1000px;
    margin: auto;
  }
  
  h2 {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    background: #f4f4f4;
  }
  
  .about-card {
    background-color: #fff8e7;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    margin-top: 20px;
    gap: 30px;
    flex-wrap: wrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .about-text {
    flex: 1 1 300px;
  }
  
  .about-photo img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ccc;
  }
  
  .project-card {
    background-color: #fff8e7;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px;
    margin: 30px 0;
    gap: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: visible;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .project-card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  }
  
  .project-text {
    flex: 1 1 55%;
    min-width: 300px;
  }
  
  .project-photo {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .project-photo img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .project-photo img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  
  .project-photo.side-stack {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex: 1 1 40%;
    max-width: 400px;
  }
  
  .project-photo.side-stack img {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .project-photo video {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .footer-icons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 10px;
  }
  
  .footer-icons img {
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
    filter: drop-shadow(0 0 4px white);
  }
  
  .footer-icons img:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px white) brightness(1.2);
  }
  
  .skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
  }
  
  .skill-tag {
    background-color: #e6e6ea;
    color: #333;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 1em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }
  
  .skill-tag:hover {
    transform: scale(1.05);
    background-color: #dcdce0;
  }
  
  .experience-card {
    background-color: #fff8e7;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    margin-top: 20px;
    gap: 30px;
    flex-wrap: wrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .experience-text {
    flex: 1 1 300px;
  }
  
  .experience-text h3 {
    margin-top: 0;
  }
  
  .experience-logo {
    flex: 1 1 200px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .experience-logo img {
    max-height: 240px;
    max-width: 100%;
    object-fit: contain;
  }
  
  @media (max-width: 768px) {
    .project-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .project-text,
    .project-photo {
      flex: 1 1 100%;
    }
  
    .project-photo video,
    .project-photo img {
      max-width: 100%;
    }
  
    .project-photo.side-stack {
      max-width: 100%;
    }
  }  