    /* Reset and Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f9f9f9;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* Header & Navigation */
    header {
      background-color: #fff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: #2c3e50;
    }

    .nav-links {
      display: flex;
      list-style: none;
    }

    .nav-links li {
      margin-left: 30px;
    }

    .nav-links a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #3498db;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('./images/back.png');
      background-size: cover;
      background-position: center;
      color: #fff;
      text-align: center;
      padding: 120px 20px;
    }

    .hero h1 {
      font-size: 2.8rem;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 30px;
    }

    .btn {
      display: inline-block;
      background: #3498db;
      color: #fff;
      padding: 12px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s;
    }

    .btn:hover {
      background: #2980b9;
    }

    /* Section Styling */
    section {
      padding: 90px 0;
    }

    section h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 40px;
      color: #2c3e50;
    }

    /* About Us */
    #about p {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
      font-size: 1.3rem;
      color: #555;
    }

    /* Products */
    .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .product-card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .product-card:hover {
      transform: translateY(-5px);
    }

    .product-card img {
      width: 100%;
      height: 500px;
      object-fit: cover;
    }

    .product-card .content {
      padding: 15px;
    }

    .product-card h3 {
      margin-bottom: 10px;
      color: #2c3e50;
    }

    .product-card p {
      color: #666;
      font-size: 0.95rem;
    }

    /* Featured Products */
    .featured {
      background-color: #ecf0f1;
    }

    /* Footer */
    footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 50px 0 20px;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-bottom: 30px;
    }

    .footer-column h3 {
      font-size: 1.2rem;
      margin-bottom: 15px;
      color: #fff;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 8px;
    }

    .footer-column a {
      color: #bdc3c7;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-column a:hover {
      color: #3498db;
    }

    .contact-info p {
      margin-bottom: 8px;
      font-size: 0.95rem;
    }

    .social-links a {
      margin-right: 15px;
      font-size: 1.2rem;
    }

    .copyright {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid #34495e;
      color: #bdc3c7;
      font-size: 0.9rem;
    }