body {
    font-family: 'Roboto', sans-serif;
  }

  /* Reset and Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
  }

  /* Header Styles */
  header {
    background-color: #AC9969;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
  }

  .logo-img {
    width: 32px;
    /* Adjust size as needed */
    height: 32px;
    /* Adjust size as needed */
    object-fit: contain;
    color: #f9f9f9;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }

  .nav-links a:hover {
    color: #9DCDC0;
  }

  /* Hero Section */
  .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./main-landing-fabric.jpeg') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 60px;
  }

  .hero-content {
    max-width: 800px;
    padding: 2rem;
  }

  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #AC9969;
    color: white;
    text-decoration: solid white;
    border-radius: 5px;
    transition: background-color 0.3s;
  }

  .cta-button:hover {
    background-color: #9DCDC0;
  }

  /* Fabric Samples Section */
  .samples {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .samples h2 {
    text-align: center;
    margin-bottom: 2rem;
  }

  .sample-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .sample-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
  }

  .sample-card:hover {
    transform: translateY(-5px);
  }

  .sample-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .sample-info {
    padding: 1rem;
  }

  /* Features Section */
  .features {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
  }

  .features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .feature-card {
    text-align: center;
    padding: 2rem;
  }

  /* Footer */
  footer {
    background-color: #AC9969;
    color: white;
    padding: 2rem;
  }

  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }

  .footer-section h3 {
    margin-bottom: 1rem;
  }

  .footer-section ul {
    list-style: none;
  }

  .footer-section ul li {
    margin-bottom: 0.5rem;
  }

  .footer-section a {
    color: white;
    text-decoration: none;
  }

  .company-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 1.5rem;
    color: white;
    fill: white;
  }

  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }

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

    .hero p {
      font-size: 1rem;
    }
  }