/* =========================
        About page
    ========================= */
    .about-page {
        display: flex;
        justify-content: center;
        padding: 3rem 1rem;
      }
      
      .profile-card {
        max-width: 500px;
        width: 100%;
        background: #ffffff;
        padding: 2rem;
        border-radius: 1.5rem;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        text-align: center;
      }
      
      .profile-icon {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 1rem;
        border: 3px solid var(--accent);
      }
      
      .name {
        font-family: 'Inter', sans-serif;
        font-size: 2rem;
        margin-bottom: 1rem;
      }
      
      .section {
        margin: 1rem 0;
      }
      
      .section h2 {
        font-size: 1.2rem;
        color: var(--accent);
        margin-bottom: 0.5rem;
      }
      
      .social-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1.5rem;
      }
      
      .social-links i {
        font-size: 2rem;
        color: var(--accent);
        transition: transform 0.2s;
      }
      
      .social-links i:hover {
        transform: scale(1.2);
      }
      
      .profile-icon{
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
      }