/* Text color */
    .content-container {
      color: #e0e0e0;
    }

    .content-container h1,
    .content-container h2 {
      color: #e0e0e0;
    }

    /* About section styling */
    .about-section {
      max-width: 800px;
      margin: 0 auto;
      padding: 40px 20px;
      text-align: center;
    }

    .about-intro {
      font-size: 1.2rem;
      line-height: 1.6;
      margin-bottom: 40px;
    }

    .about-highlights {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin: 40px 0;
      text-align: left;
    }

    .highlight-card {
      background: rgba(122, 90, 248, 0.1);
      border: 1px solid rgba(122, 90, 248, 0.3);
      border-radius: 12px;
      padding: 25px;
      transition: transform 0.3s ease;
    }

    .highlight-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(122, 90, 248, 0.2);
    }

    .highlight-card h3 {
      color: #7a5af8a1;
      margin-bottom: 15px;
      font-size: 1.3rem;
    }

    .contact-section {
      margin-top: 50px;
      padding: 30px;
      background: rgba(122, 90, 248, 0.05);
      border-radius: 12px;
      border: 1px solid rgba(122, 90, 248, 0.2);
    }

    .contact-email {
      font-size: 1.1rem;
      color: #7a5af8a1;
      font-weight: bold;
      word-break: break-all;
    }
