body {
    margin: 0;
    font-family: 'Georgia', serif;
    background: #111;
    color: #f0e6d2;
  }
  header {
    background: linear-gradient(to right, #a67c00, #bf9b30);
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
  }
  header h1 {
    margin: 0;
    font-size: 3rem;
    letter-spacing: 2px;
  }
  .catalogue {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
  }
  .product-card {
    background: #1c1c1c;
    border: 2px solid #bf9b30;
    border-radius: 12px;
    overflow: hidden;
    width: 300px;
    max-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 0 10px rgba(191, 155, 48, 0.3);
  }
  .product-card:hover {
    transform: scale(1.03);
  }
  .product-image {
    height: 240px;
    object-fit: cover;
    width: 100%;
    display: block;
  }
  .product-details {
    padding: 1rem;
  }
  .product-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #f0e6d2;
  }
  .product-price {
    color: #ffce00;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .learn-more-btn {
    display: inline-block;
    background: #bf9b30;
    color: #111;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  .learn-more-btn:hover {
    background: #a67c00;
  }

  .ribbon-section {
    margin: 30px 0;
    padding: 0 20px;
  }
  
  .ribbon-section h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .ribbon-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
  }
  
  .ribbon-scroll::-webkit-scrollbar {
    height: 8px;
  }
  
  .ribbon-scroll::-webkit-scrollbar-thumb {
    background: gold;
    border-radius: 10px;
  }
  
  .top-ribbon {
    background: #111;
    padding: 20px;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .top-ribbon .product-card {
    margin: 0 auto;
    max-width: 300px;
  }
  .mentorship-banner {
    position: relative;
    width: 100%;
    max-height: 360px;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid gold;
    margin: 20px 0;
  }
  
  .mentorship-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(0.6);
  }
  
  .mentorship-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    padding: 20px;
  }
  
  .mentorship-title {
    font-size: 2rem;
    font-weight: bold;
  }
  
  .mentorship-price {
    font-size: 1.5rem;
    margin: 10px 0;
    color: gold;
  }
  
  .mentorship-btn {
    background: gold;
    color: black;
    font-weight: bold;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
  }
  
  .mentorship-btn:hover {
    background: #e5c100;
  }