/* about section */
  .about {
    background: linear-gradient(135deg, var(--bg) 0%, var(--gray-100) 100%);
    padding: clamp(60px, 8vw, 100px) 0;
    position: relative;
    overflow: hidden;
  }
  
  .about::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent-light);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
  }
  
  .about::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: var(--primary-light);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  .about-photo {
    position: relative;
  }
  
  .about-photo::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: 18px;
    z-index: -1;
    transition: all 0.3s ease;
  }
  
  .about-photo:hover::before {
    top: -10px;
    left: -10px;
  }
  
  .about-photo::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.8;
  }
  
  .about-photo img {
    width: 100%;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    transition: all 0.4s ease;
    border: 5px solid var(--white);
    position: relative;
  }
  
  .about-photo:hover img {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  }
  
  .about-text {
    position: relative;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--accent);
  }
  
  .about-text::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: var(--accent-light);
    opacity: 0.2;
    font-family: Georgia, serif;
  }
  
  .about-text h2 {
    margin: 0 0 24px;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    color: var(--primary);
    position: relative;
    display: inline-block;
  }
  
  .about-text h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
  }
  
  .about-text p {
    margin: 0 0 20px;
    line-height: 1.7;
    color: var(--ink);
    font-size: 16px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid transparent;
    transition: border-left 0.3s ease;
  }
  
  .about-text p:hover {
    border-left: 3px solid var(--accent-light);
  }
  
  .about-text p:nth-child(2)::before {
    content: ">";
    position: absolute;
    left: -5px;
    top: 0;
    font-size: 18px;
  }
  
  .about-text p:nth-child(3)::before {
    content: ">";
    position: absolute;
    left: -5px;
    top: 0;
    font-size: 18px;
  }
  
  .about-text p:nth-child(4)::before {
    content: "**";
    position: absolute;
    left: -5px;
    top: 0;
    font-size: 18px;
  }
  
  .btn-outline {
    display: inline-flex;
    align-items: center;
    margin-top: 24px;
    padding: 12px 28px;
    border: 2px solid var(--primary);
    border-radius: 30px;
    background: transparent;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .btn-outline::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: all 0.4s ease;
    z-index: -1;
  }
  
  .btn-outline:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 39, 68, 0.2);
  }
  
  .btn-outline:hover::before {
    left: 0;
  }
  
  .btn-outline::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.3s ease;
  }
  
  .btn-outline:hover::after {
    transform: translateX(4px);
  }
  
  /* Language badges */
  .language-badges {
    display: flex;
    gap: 12px;
    margin: 24px 0;
  }
  
  .language-badge {
    padding: 6px 14px;
    background: var(--gray-100);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
  }
  
  .language-badge:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .about-grid {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }
    
    .about-text {
      padding: 25px;
    }
    
    .about-text h2::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .about-photo img {
      max-width: 400px;
      margin: 0 auto;
    }
    
    .about-photo::before {
      display: none;
    }
    
    .language-badges {
      justify-content: center;
    }
  }
  
  @media (max-width: 600px) {
    .about {
      padding: 40px 0;
    }
    
    .about-text {
      padding: 20px 15px;
    }
    
    .about-text p {
      padding-left: 15px;
    }
    
    .btn-outline {
      padding: 10px 20px;
    }
  }