body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: #fff;
    color: #222;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  header {
    padding: 0 1rem;
    text-align: left;
    background: #111;
    height: 80px;
    display: flex;
    align-items: center;
  }
  
  header h1 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    margin: 0;
  }
  
  .center-box {
    width: 90%;
    max-width: 1100px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: relative;
    padding: 2rem 0;
  }
  
  .split-section {
    display: flex;
    width: 100%;
    min-height: 500px;
    gap: 48px;
    background: #fff;
    box-shadow: none;
    border-radius: 0;
  }
  
  .split-photo, .split-projects {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 0;
  }
  
  .split-photo {
    background: none;
  }
  
  .profile-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 5/3;
    object-fit: cover;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    background: #e0dbd7;
  }
  
  .split-accent { display: none; }
  
  .split-projects {
    flex-direction: column;
    background: none;
    box-shadow: none;
    border-radius: 0;
    min-width: 0;
    min-height: 0;
    padding: 0 1rem;
    align-items: flex-start;
    justify-content: center;
  }
  
  .split-projects h2 {
    margin-top: 0;
    color: #2d3a3a;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
  }
  
  .split-projects ul {
    list-style: disc inside;
    padding: 0;
    margin: 0;
  }
  
  .split-projects li {
    margin-bottom: 1.2rem;
    font-size: 1.25rem;
  }
  
  .split-projects a {
    color: #5a7d7c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    border-bottom: 1.5px dotted #b7d6c6;
  }
  
  .split-projects a:hover {
    color: #2d3a3a;
    border-bottom: 1.5px solid #5a7d7c;
  }
  
  .project-desc {
    font-size: 1rem;
    color: #888;
    margin-top: 0.3em;
    margin-left: 0.2em;
    font-weight: 400;
    line-height: 1.5;
  }
  
  footer {
    text-align: center;
    padding: 1.5rem 0;
    background: #f6f1ee;
    border-top: 1px solid #e0dbd7;
    margin-top: auto;
  }
  
  footer a {
    margin: 0 1.2rem;
    color: #5a7d7c;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
  }
  
  footer a:hover {
    color: #2d3a3a;
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
    .center-box {
        width: 95%;
    }
    
    .split-section {
        gap: 32px;
    }
  }
  
  @media (max-width: 1000px) {
    .center-box {
        width: 90%;
        padding: 1rem 0;
    }
    
    .split-section {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        justify-content: center;
    }
    
    .split-photo, .split-projects {
        width: 100%;
        min-width: unset;
        padding: 0;
        align-items: center;
        justify-content: center;
    }
    
    .profile-photo {
        width: 90%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 5/3;
    }
    
    .split-projects {
        align-items: center;
        text-align: center;
        padding: 0 1rem;
    }
    
    .split-projects h2 {
        font-size: 1.75rem;
    }
    
    .split-projects li {
        font-size: 1.1rem;
    }
  }
  
  @media (max-width: 768px) {
    header {
        padding: 0 1rem;
        height: 60px;
    }
    
    header h1 {
        font-size: 1.1rem;
    }
    
    .center-box {
        width: 95%;
    }
    
    .profile-photo {
        max-width: 320px;
    }
    
    .split-projects h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .split-projects li {
        font-size: 1rem;
    }
    
    .project-desc {
        font-size: 0.9rem;
    }
    
    footer {
        padding: 1rem 0;
    }
    
    footer a {
        margin: 0 0.8rem;
        font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    header {
        padding: 0 0.8rem;
        height: 50px;
    }
    
    header h1 {
        font-size: 1rem;
    }
    
    .center-box {
        width: 100%;
        padding: 1rem 0;
    }
    
    .split-section {
        gap: 16px;
    }
    
    .profile-photo {
        max-width: 280px;
    }
    
    .split-projects {
        padding: 0 0.8rem;
    }
    
    .split-projects h2 {
        font-size: 1.25rem;
    }
    
    .split-projects li {
        font-size: 0.95rem;
    }
    
    .project-desc {
        font-size: 0.85rem;
    }
    
    footer {
        padding: 0.8rem 0;
    }
    
    footer a {
        margin: 0 0.6rem;
        font-size: 0.9rem;
    }
  }

  /* Remove old main-content, photo-section, projects-section styles if not needed */
  .main-content, .photo-section, .projects-section { display: none !important; }