
/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--header-bg);
    position: relative;
    overflow: hidden;
  }
  
  .about-content {
    position: relative;
    z-index: 1;
  }
  
  .about-graphic {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
    opacity: 0.3;
    z-index: 0;
  }
  
  .about-graphic2 {
    position: absolute;
    bottom: 210px;
    right: 1000px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
    opacity: 0.3;
    z-index: 0;
  }
  