body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #ffffff;
  color: #2E1D59;
}

.container-full {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.top-bar {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 1000;
}

.top-bar .logo img {
  height: 40px;
}

.menu-toggle {
  font-size: 24px;
  background: none;
  border: none;
  display: none;
  color: #2E1D59;
  z-index: 1001;
}

.nav-menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-menu a {
  color: #2E1D59;
  font-size: 14px;
  text-decoration: none;
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

.nav-buttons .btn {
  font-size: 14px;
  padding: 6px 16px;
}

.btn-outline-dark {
  border: 1px solid #2E1D59;
  color: #2E1D59;
  background-color: transparent;
}

.btn-outline-dark:hover {
  background-color: #2E1D59;
  color: #fff;
}

.btn-primary {
  background-color: #a084f6;
  border: none;
  color: white;
}

.btn-primary:hover {
  background-color: #8b6ef1;
}

.main-section {
  display: flex;
  padding: 40px 60px;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.glass-video-card {
  max-width: 700px;
  width: 100%;
  height: 400px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.glass-video-card .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.login-box-glass {
  background: rgba(0, 0, 0, 2);
  border-radius: 20px;
  padding: 35px 30px;
  max-width: 400px;
  width: 100%;
  color: #fff;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 1;
  position: relative;
}

.login-box-glass h3 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
}

.login-box-glass p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 25px;
}

.login-box-glass label {
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
  color: #eee;
}

.login-box-glass .form-control {
  border-radius: 8px;
  padding: 10px 12px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  margin-bottom: 15px;
}

.login-box-glass .form-control::placeholder {
  color: #ccc;
}

.btn-login-green {
  background-color: #136b5c;
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px;
}

.btn-login-green:hover {
  background-color: #0e594d;
}

.btn-outline-create {
  background-color: rgba(245, 246, 247);
  color: #136b5c;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  border: none;
  display: block;
}

.footer-chat {
  background: #132e42;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 50px;
  color: #dee1e3;
  font-size: 14px;
}

.chat-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.chat-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #dee1e3;
}

.input-icon {
  position: absolute;
  top: 70%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 16px;
  color: #ccc;
  pointer-events: none;
}

.position-relative .form-control {
  padding-left: 38px !important;
}

/* Mobile styles */
@media (max-width: 768px) {
  .main-section {
    flex-direction: column;
    padding: 30px 20px;
  }

  .glass-video-card {
    display: none !important;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-menu a {
    padding: 10px 0;
    font-size: 15px;
    color: #2E1D59;
    border-bottom: 1px solid #eee;
  }

  .nav-buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .nav-menu.show {
    display: flex;
  }

  .footer-chat {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}
    .about-section {
      padding: 60px 20px;
      text-align: center;
    }

    .about-section h2 {
      font-weight: 700;
      font-size: 36px;
      margin-bottom: 15px;
    }

    .about-section p {
      font-size: 16px;
      color: #555;
      max-width: 700px;
      margin: 0 auto 50px;
    }

    .info-cards {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 60px;
    }

    .glass-card {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 30px;
      width: 280px;
      backdrop-filter: blur(14px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: transform 0.3s ease;
    }

    .glass-card:hover {
      transform: translateY(-5px);
    }

    .glass-card i {
      font-size: 32px;
      color: #6a5acd;
      margin-bottom: 15px;
    }

    .glass-card h5 {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 5px;
    }

    .glass-card p {
      font-size: 14px;
      color: #555;
    }

    .mission-values {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .mission-values h4 {
      font-size: 24px;
      font-weight: 700;
      color: #3a3aee;
      margin-top: 30px;
    }

    .mission-values ul {
      padding-left: 20px;
    }

    .mission-values li {
      margin-bottom: 10px;
      font-size: 15px;
      line-height: 1.6;
    }
    
    .faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .faq-header h1 {
      font-weight: 800;
      font-size: 32px;
    }

    .faq-header p {
      font-size: 16px;
      color: #666;
    }

    .faq-section-title {
      font-size: 22px;
      font-weight: 700;
      color: #3A4AE2;
      margin: 40px 0 20px;
    }

    .accordion-button {
      font-weight: 600;
    }

    .accordion-button:not(.collapsed) {
      background-color: #f8f9fa;
      color: #000;
    }

    .accordion-body {
      font-size: 15px;
      color: #444;
    }
    .btn-login-green {
  background-color: #28a745;
  color: white;
  height: 45px;
  font-weight: bold;
  font-size: 15px;
  border-radius: 6px;
}

.btn {
  height: 45px;
}
