
  :root {
    --primary: #3a5a40;
    --secondary: #a3b18a;
    --accent: #588157;
    --light: #f1faee;
    --dark: #344e41;
    --gray: #dad7cd;
    --white: #ffffff;
    --black: #222222;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: var(--dark);
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }

  h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
  }

  h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--accent);
  }

  h3 {
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 0.8rem;
  }

  p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }

  a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  a:hover {
    color: var(--primary);
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }

  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.2;
  }

  /* Hero Section */
  .hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background-color: var(--primary);
    overflow: hidden;
  }

  .hero-section .bg-image {
    opacity: 0.3;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    max-width: 700px;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }

  /* Fabric Types Section */
  .fabric-types {
    padding: 5rem 0;
    background-color: var(--white);
  }

  .fabric-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }

  .fabric-card {
    background-color: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .fabric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  .fabric-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
  }

  .fabric-card h3, .fabric-card p {
    padding: 0 1.5rem;
  }

  .fabric-card h3 {
    margin-top: 1.5rem;
    color: var(--primary);
  }

  .fabric-card p {
    padding-bottom: 1.5rem;
  }

  /* Fabric Features Section */
  .fabric-features {
    position: relative;
    padding: 5rem 0;
    background-color: var(--primary);
    color: var(--white);
  }

  .fabric-features h2 {
    color: var(--white);
  }

  .fabric-features h2::after {
    background-color: var(--light);
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }

  .feature {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }

  .feature:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
  }

  .feature i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
  }

  .feature h3 {
    color: var(--light);
  }

  .feature p {
    color: var(--gray);
  }

  /* Fabric Collection Section */
  .fabric-collection {
    padding: 5rem 0;
    background-color: var(--light);
  }

  .collection-intro {
    max-width: 800px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
  }

  .collection-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }

  .collection-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }

  .collection-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .collection-item h3, .collection-item p {
    padding: 0 1.5rem;
  }

  .collection-item h3 {
    margin-top: 1.5rem;
    color: var(--primary);
  }

  .collection-item p {
    padding-bottom: 1.5rem;
  }

  /* Custom Fabrics Section */
  .custom-fabrics {
    padding: 5rem 0;
    background-color: var(--white);
  }

  .custom-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .custom-text {
    flex: 1;
  }

  .custom-image {
    flex: 1;
  }

  .custom-benefits {
    list-style: none;
    margin-bottom: 2rem;
  }

  .custom-benefits li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
  }

  .custom-benefits i {
    color: var(--accent);
    margin-right: 0.8rem;
  }

  .btn-primary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--accent);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
  }

  .btn-primary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  /* Fabric Care Section */
  .fabric-care {
    position: relative;
    padding: 5rem 0;
    background-color: var(--light);
  }

  .care-tips {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }

  .care-tip {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

  .care-tip:hover {
    transform: translateY(-5px);
  }

  .care-tip i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }

  /* Contact Form Section */
  .contact-form {
    padding: 5rem 0;
    background-color: var(--gray);
  }

  .contact-intro {
    max-width: 800px;
    margin-bottom: 2rem;
  }

  .fabric-inquiry-form {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    max-width: 800px;
  }

  .form-group {
    position: relative;
  }

  .full-width {
    grid-column: 1 / -1;
  }

  label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }

  input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
  }

  textarea {
    resize: vertical;
  }

  .checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
  }

  .checkbox-label input {
    width: auto;
    margin-right: 0.8rem;
  }

  /* Responsive Design */
  @media (min-width: 768px) {
    h1 {
      font-size: 3.5rem;
    }

    h2 {
      font-size: 2.5rem;
    }

    .fabric-grid, 
    .features-grid, 
    .collection-grid, 
    .care-tips {
      grid-template-columns: repeat(2, 1fr);
    }

    .custom-content {
      flex-direction: row;
    }

    .fabric-inquiry-form {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .fabric-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .features-grid, 
    .care-tips {
      grid-template-columns: repeat(4, 1fr);
    }

    .collection-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /* Utility Classes */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
