export default function RubixVenturesWebsite() {
  return (
    <div className="website">
      <style>{`
        body { margin: 0; font-family: Arial, sans-serif; }
        .website { color: #333; }
        .container { width: 90%; max-width: 1200px; margin: auto; }
        header { position: sticky; top: 0; background: #ffffff; box-shadow: 0 2px 6px rgba(0,0,0,0.08); }
        .nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
        .logo { font-size: 22px; font-weight: bold; }
        section { padding: 80px 0; }
        .hero { background: linear-gradient(to right, #fff7ed, #fef3c7); }
        .hero-grid { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; }
        .hero-text { flex: 1; min-width: 300px; }
        .hero h1 { font-size: 36px; margin-bottom: 20px; }
        .hero p { font-size: 18px; color: #555; }
        .section-title { text-align: center; font-size: 28px; margin-bottom: 50px; }
        .grid { display: grid; gap: 30px; }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
        .grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
        .card { background: #ffffff; padding: 30px; border-radius: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
        .card h3 { margin-top: 15px; margin-bottom: 10px; }
        .about-text { max-width: 800px; margin: auto; text-align: center; color: #555; }
        .contact { background: #f9fafb; text-align: center; }
        .contact-info { margin-top: 20px; }
        .contact-item { margin-bottom: 10px; }
        footer { background: #111; color: #aaa; text-align: center; padding: 20px; font-size: 14px; }
      `}</style>

      <header>
        <div className="container nav">
          <div className="logo">RUBIX VENTURES</div>
        </div>
      </header>