
  :root {
    --primary: #6a8d73;
    --secondary: #f0e6d9;
    --accent: #d68c45;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f9f7f4;
    --background-dark: #2d3033;
    --border-color: #e0d5c5;
  }

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

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

  section {
    padding: 4rem 0;
    position: relative;
  }

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

  h1, h2, h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
  }

  h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 2rem;
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
  }

  h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }

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

  p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  /* Hero Section */
  .hero-section {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: var(--background-light);
    color: var(--text-dark);
  }

  .hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
  }

  /* About Firanki Section */
  .about-firanki {
    background-color: var(--background-light);
  }

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

  .about-text {
    flex: 1;
  }

  .about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

  .about-image img:hover {
    transform: scale(1.03);
  }

  ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
  }

  li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
  }

  /* Materials Section */
  .materials-section {
    background-color: #fff;
  }

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

  .material-card {
    background-color: var(--background-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

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

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

  .material-card h3 {
    margin-top: 1.5rem;
  }

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

  /* Styles Section */
  .styles-section {
    background-color: var(--primary);
    color: var(--text-light);
  }

  .styles-section h2, .styles-section h3 {
    color: var(--text-light);
  }

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

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

  .style-item:hover {
    transform: translateY(-5px);
  }

  .style-item i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
  }

  .style-item p {
    color: var(--text-light);
    margin-bottom: 0;
  }

  /* Care Section */
  .care-section {
    background-color: var(--background-light);
  }

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

  .care-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
  }

  .care-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

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

  .care-tip {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

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

  .care-tip p {
    margin-bottom: 0;
  }

  /* Contact Section */
  .contact-section {
    background-color: var(--secondary);
    text-align: center;
  }

  .contact-description {
    max-width: 700px;
    margin: 0 auto 2rem;
  }

  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
  }

  input, textarea, select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
  }

  input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary);
  }

  .submit-btn {
    background-color: var(--primary);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
  }

  .submit-btn:hover {
    background-color: #5a7c63;
  }

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

  /* Media Queries */
  @media (min-width: 768px) {
    h1 {
      font-size: 3rem;
    }

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

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

    .styles-content {
      grid-template-columns: repeat(2, 1fr);
    }

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

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

  @media (min-width: 1024px) {
    h1 {
      font-size: 3.5rem;
    }

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

    .styles-content {
      grid-template-columns: repeat(4, 1fr);
    }
  }
