:root {
      --beige: #fdf6e3;
      --gold: #d4af37;
      --gold-light: #e6c560;
      --dark: #2c2c2c;
      --dark-light: #4a4a4a;
      --white: #ffffff;
      --shadow: rgba(0, 0, 0, 0.1);
      --shadow-hover: rgba(0, 0, 0, 0.15);
      --border: #e0e0e0;
      --font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      --transition: all 0.3s ease;
    }

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

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

    /* Header & Navigation */
    header {
      background-color: var(--white);
      box-shadow: 0 2px 10px var(--shadow);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: var(--transition);
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 2rem;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--gold);
      text-decoration: none;
      transition: var(--transition);
    }

    .logo:hover {
      color: var(--gold-light);
      transform: scale(1.05);
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--dark);
      font-weight: 500;
      padding: 0.5rem 1rem;
      border-radius: 25px;
      transition: var(--transition);
      position: relative;
    }

    .nav-links a:hover, .nav-links a.active {
      color: var(--gold);
      background-color: rgba(212, 175, 55, 0.1);
      transform: translateY(-2px);
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--gold);
      cursor: pointer;
      padding: 0.5rem;
      border-radius: 5px;
      transition: var(--transition);
    }

    .menu-toggle:hover {
      background-color: rgba(212, 175, 55, 0.1);
    }

    /* Main Content */
    main {
      margin-top: 80px;
      min-height: calc(100vh - 80px);
    }

    .section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 3rem 2rem;
    }

    .hero {
      text-align: center;
      padding: 4rem 2rem;
      background: linear-gradient(135deg, var(--beige) 0%, var(--white) 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
      animation: float 20s infinite linear;
    }

    @keyframes float {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-size: 3.5rem;
      color: var(--gold);
      margin-bottom: 1rem;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
      animation: slideInDown 1s ease-out;
    }

    @keyframes slideInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-subtitle {
      font-size: 1.3rem;
      color: var(--dark-light);
      margin-bottom: 2rem;
      animation: slideInUp 1s ease-out 0.2s both;
    }

    @keyframes slideInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .cta-button {
      display: inline-block;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      color: var(--white);
      padding: 1rem 2rem;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
      transition: var(--transition);
      animation: slideInUp 1s ease-out 0.4s both;
    }

    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    }

    /* Section Titles */
    .section-title {
      font-size: 2.5rem;
      color: var(--gold);
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      border-radius: 2px;
    }

    /* Cards */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .card {
      background: var(--white);
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 5px 20px var(--shadow);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    }

    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px var(--shadow-hover);
    }

    .card h3 {
      color: var(--gold);
      font-size: 1.5rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .card p {
      color: var(--dark-light);
      line-height: 1.7;
    }

    /* Video Section */
    .video-container {
      position: relative;
      width: 100%;
      max-width: 800px;
      margin: 2rem auto;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px var(--shadow);
    }

    .responsive-video {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
    }

    .responsive-video iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Formation Section */
    .formation-highlight {
      background: linear-gradient(135deg, var(--white) 0%, var(--beige) 100%);
      border-radius: 20px;
      padding: 3rem;
      text-align: center;
      box-shadow: 0 5px 20px var(--shadow);
      margin: 2rem 0;
    }

    .academy-link {
      display: inline-block;
      color: var(--gold);
      text-decoration: none;
      font-weight: 600;
      font-size: 1.2rem;
      padding: 1rem 2rem;
      border: 2px solid var(--gold);
      border-radius: 50px;
      margin-top: 1rem;
      transition: var(--transition);
    }

    .academy-link:hover {
      background-color: var(--gold);
      color: var(--white);
      transform: translateY(-2px);
    }

    /* Footer */
    footer {
      background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
      color: var(--white);
      text-align: center;
      padding: 2rem;
      margin-top: 4rem;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }

      .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: 0 5px 20px var(--shadow);
      }

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

      .nav-links li {
        margin: 1rem 0;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .hero-subtitle {
        font-size: 1.1rem;
      }

      .section {
        padding: 2rem 1rem;
      }

      .navbar {
        padding: 1rem;
      }

      .cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .formation-highlight {
        padding: 2rem 1rem;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 2rem;
      }

      .section-title {
        font-size: 2rem;
      }

      .card {
        padding: 1.5rem;
      }
    }

    /* Animations */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s ease-out forwards;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Scroll animations */
    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease-out;
    }

    .animate-on-scroll.animated {
      opacity: 1;
      transform: translateY(0);
    }