  :root {
      --bg-dark: #121212;
      --bg-card: #1e1e1e;
      --bg-secondary: #252525;
      --text-main: #e0e0e0;
      --text-muted: #a0a0a0;
      --accent: #d4af37;
      --accent-hover: #b5952f;
      --danger: #ff6b6b;
      --success: #4caf50;
      --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }

  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  body {
      font-family: var(--font-stack);
      background-color: var(--bg-dark);
      color: var(--text-main);
      line-height: 1.6;
      overflow-x: hidden;
  }

  a {
      text-decoration: none;
      color: inherit;
      transition: 0.3s;
  }

  ul {
      list-style: none;
  }

  img {
      max-width: 100%;
      display: block;
  }

  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .btn {
      display: inline-block;
      background-color: var(--accent);
      color: #000;
      padding: 12px 30px;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
      border: none;
      font-size: 1rem;
      transition: transform 0.2s, background-color 0.3s;
  }

  .btn:hover {
      background-color: var(--accent-hover);
      transform: translateY(-2px);
  }

  .btn-outline {
      background-color: transparent;
      border: 2px solid var(--accent);
      color: var(--accent);
  }

  .btn-outline:hover {
      background-color: var(--accent);
      color: #000;
  }

  section {
      padding: 80px 0;
  }

  h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      text-align: center;
      color: var(--accent);
  }

  .section-desc {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 50px;
      color: var(--text-muted);
  }

  header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: rgba(18, 18, 18, 0.95);
      padding: 15px 0;
      z-index: 1000;
      border-bottom: 1px solid #333;
  }

  .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--accent);
  }

  .nav-menu {
      display: flex;
      gap: 30px;
  }

  .nav-link:hover {
      color: var(--accent);
  }

  .burger {
      display: none;
      cursor: pointer;
      font-size: 1.5rem;
  }

  #hero {
      height: 100vh;
      display: flex;
      align-items: center;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero.png');
      background-size: cover;
      background-position: center;
      text-align: center;
      padding-top: 80px;
  }

  .hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      line-height: 1.2;
  }

  .hero-content p {
      font-size: 1.2rem;
      margin-bottom: 40px;
      color: #ccc;
  }

  .hero-icons {
      margin-top: 40px;
      display: flex;
      justify-content: center;
      gap: 40px;
      font-size: 2rem;
      color: var(--accent);
  }

  .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
  }

  .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
  }

  .grid-4 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
  }

  .card {
      background-color: var(--bg-card);
      padding: 30px;
      border-radius: 10px;
      transition: 0.3s;
      height: 100%;
      border: 1px solid #333;
  }

  .card:hover {
      transform: translateY(-5px);
      border-color: var(--accent);
  }

  .card-icon {
      font-size: 2.5rem;
      color: var(--accent);
      margin-bottom: 20px;
  }

  .about-img img {
      border-radius: 10px;
      width: 100%;
      height: auto;
  }

  .program-card h3,
  .card h3 {
      margin-bottom: 15px;
      font-size: 1.3rem;
  }

  .edu-block {
      background-color: var(--bg-secondary);
  }

  .step-card {
      text-align: center;
      position: relative;
  }

  .step-number {
      background-color: var(--accent);
      color: #000;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      margin: 0 auto 15px;
  }

  .testimonial-card {
      text-align: center;
      font-style: italic;
  }

  .testimonial-author {
      margin-top: 20px;
      font-weight: bold;
      color: var(--accent);
      font-style: normal;
  }

  .faq-item {
      background-color: var(--bg-card);
      margin-bottom: 10px;
      border-radius: 5px;
      overflow: hidden;
  }

  .faq-question {
      padding: 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
  }

  .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding: 0 20px;
      color: var(--text-muted);
  }

  .faq-item.active .faq-answer {
      padding: 20px;
      max-height: 500px;
  }

  .contact-form {
      background-color: var(--bg-card);
      padding: 40px;
      border-radius: 10px;
  }

  .form-group {
      margin-bottom: 20px;
  }

  .form-group label {
      display: block;
      margin-bottom: 8px;
      color: var(--text-muted);
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
      width: 100%;
      padding: 12px;
      background-color: #333;
      border: 1px solid #444;
      border-radius: 5px;
      color: #fff;
      font-family: inherit;
  }

  .form-group input:focus,
  .form-group textarea:focus {
      outline: none;
      border-color: var(--accent);
  }

  .error-msg {
      color: var(--danger);
      font-size: 0.85rem;
      margin-top: 5px;
      display: none;
  }

  .checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.9rem;
      color: var(--text-muted);
  }

  .checkbox-group input {
      width: auto;
      margin-top: 4px;
  }

  footer {
      background-color: #080808;
      padding: 80px 0 30px;
      border-top: 1px solid #333;
      font-size: 0.9rem;
      color: var(--text-muted);
  }

  .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      margin-bottom: 50px;
  }

  .footer-col h4 {
      color: #fff;
      font-size: 1.1rem;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
  }

  .footer-col h4::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 30px;
      height: 2px;
      background-color: var(--accent);
  }

  .footer-col ul li {
      margin-bottom: 12px;
  }

  .footer-col ul li a {
      color: var(--text-muted);
      transition: 0.3s;
      display: inline-block;
  }

  .footer-col ul li a:hover {
      color: var(--accent);
      transform: translateX(5px);
  }

  .footer-socials {
      display: flex;
      gap: 15px;
      margin-top: 20px;
  }

  .footer-socials a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background-color: #222;
      color: #fff;
      border-radius: 50%;
      transition: 0.3s;
  }

  .footer-socials a:hover {
      background-color: var(--accent);
      color: #000;
  }

  .footer-bottom {
      border-top: 1px solid #222;
      padding-top: 30px;
      margin-top: 30px;
  }

  .risk-warning-full {
      font-size: 0.75rem;
      line-height: 1.5;
      color: #555;
      margin-bottom: 20px;
      text-align: justify;
  }

  .copyright-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 0.85rem;
  }

  @media (max-width: 768px) {
      .footer-grid {
          grid-template-columns: 1fr;
          text-align: center;
      }

      .footer-col h4::after {
          left: 50%;
          transform: translateX(-50%);
      }

      .footer-socials {
          justify-content: center;
      }

      .copyright-row {
          flex-direction: column;
          text-align: center;
      }
  }

  @media (max-width: 768px) {
      .nav-menu {
          position: fixed;
          left: -100%;
          top: 70px;
          flex-direction: column;
          background-color: #121212;
          width: 100%;
          height: calc(100vh - 70px);
          text-align: center;
          transition: 0.3s;
          padding-top: 40px;
      }

      .nav-menu.active {
          left: 0;
      }

      .burger {
          display: block;
      }

      h2 {
          font-size: 2rem;
      }

      .hero-content h1 {
          font-size: 2.2rem;
      }

      .grid-2,
      .grid-3 {
          grid-template-columns: 1fr;
      }

      .btn {
          width: 100%;
          margin-bottom: 10px;
      }
  }

  .policy-content {
      padding: 90px 0;
  }

  .policy-content h1 {
      font-size: 2.5rem;
      margin-bottom: 40px;
      color: var(--text-main);
  }

  .policy-content h2 {
      font-size: 1.5rem;
      margin-top: 40px;
      margin-bottom: 20px;
      color: var(--accent);
  }

  .policy-content p {
      margin-bottom: 15px;
      color: var(--text-muted);
      text-align: justify;
  }

  .policy-content ul {
      margin-bottom: 20px;
      padding-left: 20px;
      color: var(--text-muted);
  }

  .policy-content li {
      margin-bottom: 10px;
  }

  .policy-content .contact-info {
      background-color: var(--bg-card);
      padding: 30px;
      border-radius: 8px;
      margin-top: 40px;
      border: 1px solid #333;
  }.table-responsive {
            overflow-x: auto;
            margin: 20px 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background-color: var(--bg-card);
            border: 1px solid #333;
        }

        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #333;
            color: var(--text-muted);
        }

        th {
            background-color: var(--bg-secondary);
            color: var(--accent);
            font-weight: bold;
        }