
  :root {
    --primary: #5a3e36;
    --secondary: #d3b8a3;
    --accent: #e8c39e;
    --dark: #2c2320;
    --light: #f9f5f0;
    --text: #333333;
    --text-light: #f9f5f0;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --border-radius: 8px;
  }

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

  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
  }

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

  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
  }

  h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
  }

  h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
  }

  h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
  }

  h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
  }

  p {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
  }

  /* Sections */
  section {
    position: relative;
    padding: var(--spacing-xl) 0;
  }

  .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;
    text-align: center;
    background-color: var(--dark);
    overflow: hidden;
  }

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

  .hero-section .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
  }

  .hero-section h1 {
    color: var(--light);
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .hero-description {
    color: var(--light);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

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

  .intro-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .intro-content {
    max-width: 800px;
    text-align: center;
    margin-bottom: var(--spacing-lg);
  }

  .intro-image {
    width: 100%;
    max-width: 800px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .intro-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Types Section */
  .types-section {
    background-color: var(--light);
    padding-top: 0;
  }

  .types-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
  }

  .types-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

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

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

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

  .type-card h3, .type-card p, .type-card ul {
    padding: 0 var(--spacing-md);
  }

  .type-card h3 {
    margin-top: var(--spacing-md);
  }

  .features-list {
    list-style: none;
    margin-bottom: var(--spacing-md);
  }

  .features-list li {
    font-family: 'Lato', sans-serif;
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
  }

  .features-list i {
    color: var(--primary);
    margin-right: var(--spacing-xs);
  }

  /* Inspiration Section */
  .inspiration-section {
    background-color: var(--dark);
    color: var(--light);
    position: relative;
  }

  .inspiration-content {
    position: relative;
    z-index: 1;
  }

  .inspiration-section h2, 
  .inspiration-section h4 {
    color: var(--light);
  }

  .inspiration-section p {
    color: var(--light);
  }

  .inspiration-section a {
    color: var(--accent);
    text-decoration: underline;
  }

  .trend-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
  }

  .trend-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s ease;
  }

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

  .trend-box i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: var(--spacing-sm);
  }

  .trend-box h4 {
    margin-bottom: var(--spacing-xs);
  }

  .trend-box p {
    margin-bottom: 0;
  }

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

  .measurement-content {
    max-width: 900px;
    margin: 0 auto;
  }

  .measurement-steps {
    margin-top: var(--spacing-lg);
  }

  .step {
    display: flex;
    margin-bottom: var(--spacing-md);
    align-items: flex-start;
  }

  .step-number {
    background-color: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-right: var(--spacing-md);
    margin-top: 5px;
  }

  .step-content {
    flex-grow: 1;
  }

  .step-content h3 {
    margin-bottom: var(--spacing-xs);
  }

  .step-content p {
    margin-bottom: 0;
  }

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

  .cta-content {
    max-width: 700px;
    margin: 0 auto;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
  }

  .btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-primary {
    background-color: var(--primary);
    color: white;
  }

  .btn-primary:hover {
    background-color: #4a3329;
  }

  .btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
  }

  .btn-secondary:hover {
    background-color: rgba(90, 62, 54, 0.1);
  }

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

    .intro-section .container {
      flex-direction: row;
      align-items: center;
      gap: var(--spacing-lg);
    }

    .intro-content {
      flex: 1;
      text-align: left;
      margin-bottom: 0;
    }

    .intro-image {
      flex: 1;
    }

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

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

    .cta-buttons {
      flex-direction: row;
      justify-content: center;
    }
  }

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

    .hero-description {
      font-size: 1.5rem;
    }

    .step {
      margin-bottom: var(--spacing-lg);
    }
  }
