:root {
          --bg-color: #0a0f1e;
          --accent-primary: #00f5ff;
          --accent-secondary: #c63421;
          --text-primary: #ffffff;
          --text-secondary: rgba(255, 255, 255, 0.7);
          --card-bg: rgba(15, 23, 42, 0.7);
          --card-border: rgba(0, 245, 255, 0.2);
      }

      body {
          background-color: var(--bg-color);
          font-family: 'Inter', sans-serif;
          color: var(--text-primary);
          margin: 0;
          padding: 0;
          min-height: 100vh;
          overflow-x: hidden;
      }

      .space {
          height: 80px;
      }

      h1 {
          font-size: 3.5rem;
          font-weight: 800;
          text-align: center;
          margin-bottom: 3rem;
          background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
          -webkit-background-clip: text;
          background-clip: text;
          color: transparent;
          position: relative;
          padding-bottom: 1rem;
      }

      h1::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          width: 100px;
          height: 4px;
          background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
          border-radius: 2px;
      }

      /* About Sections */
      .about-container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 2rem;
      }

      .about-section {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 4rem;
          margin-bottom: 6rem;
          align-items: center;
      }

      .about-section:nth-child(even) .about-content {
          order: 2;
      }

      .about-section:nth-child(even) .about-visual {
          order: 1;
      }

      .about-content {
          padding: 2rem;
      }

      .about-visual {
          position: relative;
          height: 400px;
          border-radius: 20px;
          overflow: hidden;
          display: flex;
          align-items: center;
          justify-content: center;
      }

      .visual-placeholder {
          width: 100%;
          height: 100%;
          background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
          opacity: 0.7;
          border-radius: 20px;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 5rem;
          color: white;
      }

      .about-title {
          font-size: 2.2rem;
          font-weight: 700;
          margin-bottom: 1.5rem;
          color: var(--text-primary);
          position: relative;
      }

      .about-title::after {
          content: '';
          position: absolute;
          bottom: -10px;
          left: 0;
          width: 60px;
          height: 4px;
          background: var(--accent-primary);
          border-radius: 2px;
      }

      .about-text {
          color: var(--text-secondary);
          line-height: 1.7;
          margin-bottom: 2rem;
          font-size: 1.1rem;
      }

      /* Stats Section */
      .stats-section {
          background: var(--card-bg);
          border: 1px solid var(--card-border);
          border-radius: 20px;
          padding: 4rem 2rem;
          margin: 4rem 0;
          backdrop-filter: blur(10px);
          text-align: center;
      }

      .stats-grid {
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          gap: 2rem;
      }

      .stat-item {
          padding: 1.5rem;
      }

      .stat-number {
          font-size: 3rem;
          font-weight: 800;
          background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
          -webkit-background-clip: text;
          background-clip: text;
          color: transparent;
          margin-bottom: 0.5rem;
      }

      .stat-label {
          color: var(--text-secondary);
          font-size: 1.1rem;
      }

      /* Team Section */
      .team-section {
          margin: 6rem 0;
      }

      .team-grid {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 2rem;
      }

      .team-member {
          background: var(--card-bg);
          border: 1px solid var(--card-border);
          border-radius: 20px;
          padding: 2rem;
          text-align: center;
          transition: all 0.4s ease;
          backdrop-filter: blur(10px);
      }

      .team-member:hover {
          transform: translateY(-10px);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      }

      .member-image {
          width: 150px;
          height: 150px;
          border-radius: 50%;
          margin: 0 auto 1.5rem;
          background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 3rem;
          color: white;
      }

      .member-name {
          font-size: 1.5rem;
          font-weight: 700;
          margin-bottom: 0.5rem;
          color: var(--text-primary);
      }

      .member-role {
          color: var(--accent-primary);
          margin-bottom: 1rem;
          font-weight: 500;
      }

      .member-bio {
          color: var(--text-secondary);
          line-height: 1.6;
      }

      /* Values Section */
      .values-grid {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 2rem;
          margin: 4rem 0;
      }

      .value-item {
          background: var(--card-bg);
          border: 1px solid var(--card-border);
          border-radius: 20px;
          padding: 2.5rem;
          transition: all 0.4s ease;
          backdrop-filter: blur(10px);
      }

      .value-item:hover {
          transform: translateY(-5px);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      }

      .value-icon {
          width: 70px;
          height: 70px;
          background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
          border-radius: 16px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 1.5rem;
      }

      .value-icon .material-symbols-outlined {
          font-size: 2rem;
          color: var(--text-primary);
      }

      .value-title {
          font-size: 1.5rem;
          font-weight: 700;
          margin-bottom: 1rem;
          color: var(--text-primary);
      }

      .value-description {
          color: var(--text-secondary);
          line-height: 1.6;
      }

      /* CTA Section */
      .about-cta {
          background: linear-gradient(135deg, var(--card-bg) 0%, rgba(63, 71, 39, 0.8) 100%);
          border: 1px solid var(--card-border);
          border-radius: 20px;
          padding: 4rem 2rem;
          text-align: center;
          margin: 6rem 0;
          backdrop-filter: blur(10px);
      }

      .cta-title {
          font-size: 2.5rem;
          font-weight: 700;
          margin-bottom: 1.5rem;
          color: var(--text-primary);
      }

      .cta-description {
          color: var(--text-secondary);
          font-size: 1.2rem;
          margin-bottom: 2rem;
          max-width: 700px;
          margin-left: auto;
          margin-right: auto;
      }

      .cta-button {
          display: inline-block;
          padding: 1.2rem 2.5rem;
          background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
          color: var(--text-primary);
          border-radius: 50px;
          text-decoration: none;
          font-weight: 600;
          transition: all 0.3s ease;
      }

      .cta-button:hover {
          transform: translateY(-3px);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
      }

      /* Background elements */
      .bg-globe {
          position: absolute;
          top: 20%;
          right: 5%;
          width: 400px;
          height: 400px;
          background: radial-gradient(circle at center, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
          border-radius: 50%;
          filter: blur(40px);
          z-index: -1;
          animation: float 15s ease-in-out infinite;
      }

      .bg-particles {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          pointer-events: none;
          z-index: -1;
      }

      .particle {
          position: absolute;
          background: var(--accent-primary);
          border-radius: 50%;
          opacity: 0.3;
          animation: floatParticle 20s linear infinite;
      }

      /* Animations */
      @keyframes gradientShift {
          0%, 100% { background-position: 0% 50%; }
          50% { background-position: 100% 50%; }
      }

      @keyframes float {
          0%, 100% { transform: translateY(0) rotate(0deg); }
          50% { transform: translateY(-20px) rotate(5deg); }
      }

      @keyframes floatParticle {
          0% {
              transform: translateY(100vh) translateX(0) rotate(0deg);
              opacity: 0;
          }
          10% { opacity: 0.3; }
          90% { opacity: 0.2; }
          100% {
              transform: translateY(-100px) translateX(100px) rotate(360deg);
              opacity: 0;
          }
      }

      /* Responsive Design */
      @media (max-width: 1024px) {
          .about-section {
              grid-template-columns: 1fr;
              gap: 2rem;
          }

          .about-section:nth-child(even) .about-content,
          .about-section:nth-child(even) .about-visual {
              order: unset;
          }

          .stats-grid {
              grid-template-columns: repeat(2, 1fr);
          }

          .team-grid {
              grid-template-columns: repeat(2, 1fr);
          }

          .values-grid {
              grid-template-columns: 1fr;
          }

          h1 {
              font-size: 2.8rem;
          }
      }

      @media (max-width: 768px) {
          .about-container {
              padding: 1rem;
          }

          .stats-grid,
          .team-grid {
              grid-template-columns: 1fr;
          }

          h1 {
              font-size: 2.2rem;
          }

          .about-title {
              font-size: 1.8rem;
          }

          .stat-number {
              font-size: 2.5rem;
          }

          .bg-globe {
              width: 300px;
              height: 300px;
              top: 10%;
              right: -50px;
          }
      }

      @media (max-width: 480px) {
          h1 {
              font-size: 1.8rem;
          }

          .about-title {
              font-size: 1.6rem;
          }

          .cta-title {
              font-size: 1.8rem;
          }

          .member-image {
              width: 120px;
              height: 120px;
          }
      }
