 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #fe9900;
      --secondary: #663200;
      --light-cream: #fff8f0;
      --gold: #d4af37;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: #333;
      background: #fff;
      overflow-x: hidden;
    }

    /* TOP BAR */
    .top-bar {
      background: var(--secondary);
      color: white;
      font-size: 14px;
      padding: 10px 2px;
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    /* NAVBAR MODERNE */
    nav {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 40px;
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: all 0.3s ease;
    }

    nav img {
      height: 60px;
      border-radius: 50%;
      border: 3px solid var(--primary);
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 35px;
    }

    nav a {
      text-decoration: none;
      color: var(--secondary);
      font-weight: 500;
      position: relative;
      transition: color 0.3s;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s;
    }

    nav a:hover {
      color: var(--primary);
    }

    nav a:hover::after {
      width: 100%;
    }

    .menu-toggle {
      display: none;
      font-size: 28px;
      cursor: pointer;
      color: var(--secondary);
    }

    /* FOOTER */
    footer {
      background: var(--secondary);
      color: white;
      text-align: center;
      padding: 40px 20px;
    }

    footer p {
      margin: 8px 0;
    }

    /* RESPONSIVE */
    @media (max-width: 968px) {
      header {
        flex-direction: column;
        height: auto;
        padding: 60px 30px;
        text-align: center;
      }

      .header-content h1 {
        font-size: 48px;
      }

      .header-image img {
        width: 350px;
        height: 350px;
        margin-top: 40px;
      }

      .about-flex {
        flex-direction: column;
        gap: 50px;
        padding: 20px;
      }

      .about-highlights {
        grid-template-columns: 1fr;
      }

      nav ul {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      nav ul.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 90px;
        right: 20px;
        background: white;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      }
    }

    @media (max-width: 600px) {
      .header-content h1 {
        font-size: 36px;
      }

      .header-image img {
        width: 280px;
        height: 280px;
      }

      h2 {
        font-size: 32px;
      }
    }