    /* Root Variables */
    :root {
      --primary: #f65c5c;
      --primary-light: #ff7875;
      --dark-bg: #0a0a23;
      --dark-secondary: #1b1f3b;
      --light-text: #ffffff;
      --light-gray: #f5f5f7;
      --card-bg: rgba(255, 255, 255, 0.05);
      --nav-gradient-start: #ffffff;
      --nav-gradient-end: #1e90ff;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--dark-bg);
      color: var(--light-text);
      line-height: 1.6;
      padding-top: 70px;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }



    /* Vision & Mission Section - Split Layout */
    .vision-mission-split {
      padding: 80px 20px;
    }

    .vm-split-container {
      max-width: 90%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    @media (max-width: 768px) {
      .vm-split-container {
        grid-template-columns: 1fr;
      }
    }

    .vm-content {
      background: rgba(22, 22, 46, 0.7);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      padding: 40px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .vm-content h2 {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 30px;
      background: linear-gradient(90deg, #f65c5c, #e44545, #d9130f);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .vm-item {
      margin-bottom: 30px;
    }

    .vm-item h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: var(--primary);
      position: relative;
      padding-bottom: 10px;
      display: flex;
      align-items: center;
    }

    .vm-item h3 i {
      margin-right: 10px;
      font-size: 1.2em;
    }

    .vm-item h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: var(--primary);
      border-radius: 2px;
    }

    .vm-item p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1rem;
      line-height: 1.7;
    }

    .vm-image {
      position: relative;
      height: 100%;
      min-height: 400px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .vm-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .vm-image-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 30px;
      background: linear-gradient(to top, rgba(10,10,35,0.9) 0%, transparent 100%);
    }

    .vm-image-overlay h3 {
      font-size: 1.8rem;
      margin-bottom: 10px;
      color: white;
    }

    .vm-image-overlay p {
      color: rgba(255,255,255,0.8);
      line-height: 1.6;
    }

    /* Founders Section */
    .founders-section {
      padding: 60px 20px;
      font-family: 'Inter', sans-serif;
    }

    .founders-container {
      width: 95%;
      max-width: 90%;
      margin: 0 auto;
      text-align: center;
    }

    .section-header {
      margin-bottom: 50px;
    }

    .section-header h2 {
      font-size: clamp(1.8rem, 5vw, 2.6rem);
      font-weight: 800;
      color: white;
      margin-bottom: 15px;
    }

    .section-header p {
      font-size: 1.1rem;
      color: #ffffff;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .divider {
      width: 80px;
      height: 4px;
      background: #f65c5c;
      margin: 20px auto 0;
      border-radius: 2px;
    }

    .founders-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .founder-card {
      background: white;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      text-align: center;
    }

    .founder-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(246, 92, 92, 0.2);
    }

    .founder-img {
      width: 150px;
      height: 150px;
      margin: 0 auto 25px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid #f65c5c;
    }

    .founder-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .founder-name {
      font-size: 1.3rem;
      font-weight: 700;
      color: #0a0a23;
      margin-bottom: 8px;
    }

    .founder-title {
      color: #f65c5c;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .founder-bio {
      color: #64748b;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .founder-social {
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .social-icon {
      width: 36px;
      height: 36px;
      background: #f1f5f9;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }

    .social-icon:hover {
      background: rgba(246, 92, 92, 0.2);
      transform: translateY(-3px);
    }

    /* Mentors Section */
    .mentors-section {
      padding: 60px 20px;
      background: linear-gradient(135deg, #0a0a23 0%, #1b1f3b 100%);
    }

    .mentors-container {
      max-width: 90%;
      margin: 0 auto;
    }

    .mentors-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .mentor-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

    .mentor-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(246, 92, 92, 0.2);
      border-color: rgba(246, 92, 92, 0.3);
    }

    .mentor-header {
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 15px;
      background: rgba(255, 255, 255, 0.05);
    }

    .mentor-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .mentor-info {
      text-align: left;
    }

    .mentor-name {
      font-size: 1.2rem;
      font-weight: 700;
      color: white;
      margin-bottom: 5px;
    }

    .mentor-title {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.9rem;
      margin-bottom: 5px;
    }

    .mentor-rating {
      color: #ffc107;
      font-size: 0.9rem;
    }

    .mentor-rating span {
      color: white;
      margin-left: 5px;
    }

    .mentor-body {
      padding: 20px;
    }

    .mentor-expertise {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 15px;
    }

    .expertise-tag {
      background: rgba(246, 92, 92, 0.15);
      color: var(--primary);
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 500;
    }

    .mentor-bio {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .mentor-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 15px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mentor-stats {
      display: flex;
      gap: 15px;
    }

    .stat-item {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .stat-item i {
      color: var(--primary);
    }

    .btn-connect {
      background: var(--primary);
      color: white;
      border: none;
      padding: 8px 16px;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }

    .btn-connect:hover {
      background: #e44545;
      transform: translateY(-2px);
    }

    /* Footer Styles */
    .footer {
      background: #0a0a23;
      color: white;
      padding: 50px 0 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      width: 100%;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      max-width: 90%;
      margin: 0 auto;
      padding: 0 20px;
      width: 95%;
    }

    .footer-column h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 40px;
      height: 3px;
      background: #f65c5c;
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all 0.3s;
      display: inline-block;
      padding: 2px 0;
    }

    .footer-links a:hover {
      color: #f65c5c;
      transform: translateX(5px);
    }

    .footer-contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.95rem;
    }

    .footer-contact-item svg {
      margin-right: 10px;
      color: #f65c5c;
      flex-shrink: 0;
    }

    .newsletter-form {
      display: flex;
      margin-top: 20px;
    }

    .newsletter-input {
      flex: 1;
      padding: 12px 15px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 6px;
      color: white;
      font-size: 0.9rem;
      outline: none;
    }

    .newsletter-input:focus {
      border-color: #f65c5c;
    }

    .newsletter-btn {
      background: #f65c5c;
      color: white;
      border: none;
      padding: 0 20px;
      border-radius: 6px;
      margin-left: 10px;
      cursor: pointer;
      transition: all 0.3s;
    }

    .newsletter-btn:hover {
      opacity: 0.9;
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-link {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }

    .social-link:hover {
      background: rgba(246, 92, 92, 0.2);
      transform: translateY(-3px);
    }

    .footer-bottom {
      text-align: center;
      margin-top: 50px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.7);
    }

    .footer-bottom a {
      color: #f65c5c;
      text-decoration: none;
    }

    /* Responsive Styles */
    @media (min-width: 768px) {
      body {
        padding-top: 80px;
      }

      .navbar {
        padding: 15px 30px;
      }

      .nav-left img {
        height: 40px;
      }

      .nav-right {
        display: flex;
        align-items: center;
        gap: 20px;
      }

      .mobile-nav-controls {
        display: none;
      }
    }

    @media (max-width: 767px) {
      .mobile-menu-btn {
        display: block;
      }
    }
