#about-container {
    width: 100%;
    max-width: 800px;
    padding: 24px 32px;
    margin-top: 48px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    color: #333;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  #about-container h2 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #2a2a2a;
  }
  
  #about-content {
    font-size: 15px;
    line-height: 1.65;
    color: #444;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  #about-content a {
    color: #2f66c7;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(47, 102, 199, 0.2);
    transition: border-bottom 0.2s ease;
  }
  
  #about-content a:hover {
    border-bottom: 1px solid rgba(47, 102, 199, 0.6);
  }
  

  #footnote {
    font-size: 13px;
    color: #666;
    margin-top: 24px;
    margin-bottom: 16px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }
  
  #footnote:hover {
    opacity: 1;
  }
  
  #footnote a {
    color: #2f66c7;
    text-decoration: none;
    border-bottom: 1px solid rgba(47, 102, 199, 0.2);
    transition: border-bottom 0.2s ease;
  }
  
  #footnote a:hover {
    border-bottom: 1px solid rgba(47, 102, 199, 0.6);
  }
  