
    /* Global Styles */
    :root {
      --primary: #c92a2a;
      /* Dojo Red */
      --primary-dark: #a61e1e;
       /*--dark: #f8f9fa;*/
      --dark: #121212;
      /* Charcoal Black */
      --light-gray: #f8f9fa;
      --border-color: #e9ecef;
      --text: #333333;
      --text-muted: #666666;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      color: var(--text);
      line-height: 1.6;
      background-color: #ffffff;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .btn {
      display: inline-block;
      background-color: var(--primary);
      color: #fff;
      padding: 12px 26px;
      border-radius: 4px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }

    .btn:hover {
      background-color: var(--primary-dark);
    }

    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-title h2 {
      font-size: 2.2rem;
      color: var(--dark);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .section-title p {
      color: var(--text-muted);
    }

    /* Header & Navigation */
    header {
      background-color: var(--dark);
      color: #fff;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
    }

    .logo-container img {
      max-height: 50px;
      width: auto;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-light);
      text-decoration: none;
      font-weight: 700;
      font-size: 1.25rem;
    }

    .brand-logo img {
      width: 100px;
      height: 100px;
      border-radius: 4px;
      object-fit: cover;
      background: #444;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 25px;
      align-items: center;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    /* Hero Section */
    .hero {
      position: relative;
      background-color: #000;
      color: #fff;
      padding: 100px 0;
      overflow: hidden;
    }

    .hero-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.35;
    }

    .hero-content {
      position: relative;
      max-width: 650px;
    }

    .hero-content h1 {
      font-size: 3rem;
      line-height: 1.2;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .hero-content p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    /* About Section */
    .about {
      padding: 80px 0;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .about-img {
      border-radius: 8px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* Programs Section */
    .programs {
      padding: 80px 0;
      background-color: var(--light-gray);
    }

    .program-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .card {
      background: #fff;
      border-radius: 8px;
      padding: 30px;
      border: 1px solid var(--border-color);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
    }

    .card h3 {
      margin-bottom: 12px;
      color: var(--dark);
    }

    /* Schedule Section */
    .schedule {
      padding: 80px 0;
    }

    .schedule-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }

    .schedule-table th,
    .schedule-table td {
      border: 1px solid var(--border-color);
      padding: 14px;
      text-align: left;
    }

    .schedule-table th {
      background-color: var(--dark);
      color: #fff;
    }

    .schedule-table tr:nth-child(even) {
      background-color: var(--light-gray);
    }

    /* Contact & Sign-Up */
    .contact {
      padding: 80px 0;
      background-color: var(--light-gray);
    }

    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-group label {
      display: block;
      margin-bottom: 5px;
      font-weight: 500;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    /* Footer */
    footer {
      background-color: var(--dark);
      color: #a0a0a0;
      padding: 50px 0 25px 0;
    }

    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 40px;
    }

    .footer-col h4 {
      color: #fff;
      margin-bottom: 15px;
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 10px;
    }

    .social-links a {
      color: #fff;
      background-color: #2b2b2b;
      padding: 8px 14px;
      border-radius: 4px;
      font-size: 0.9rem;
    }

    .social-links a:hover {
      background-color: var(--primary);
    }

    .footer-bottom {
      border-top: 1px solid #2b2b2b;
      text-align: center;
      padding-top: 20px;
      font-size: 0.9rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .navbar {
        flex-direction: column;
        gap: 15px;
      }

      .about-grid,
      .contact-wrapper {
        grid-template-columns: 1fr;
      }

      .hero-content h1 {
        font-size: 2.2rem;
      }
    }
