
    /* Global Styles */
    :root {
      --primary: #800020; /* Deep Burgundy */
      --secondary: #D4AF37; /* Warm Gold */
      --bg-light: #FAFAFA;
      --text-dark: #222222;
      --text-muted: #666666;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background-color: var(--bg-light);
      color: var(--text-dark);
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* Navigation */
    header {
      background-color: #ffffff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    nav {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--primary);
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 1.5rem;
    }

    .nav-links a:hover {
      color: var(--primary);
      font-weight: 600;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../assets/image/traditional-saree.jpeg) center/cover no-repeat;
      height: 60vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #ffffff;
      padding: 0 1rem;
    }

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

    .hero p {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
    }

    .btn {
      background-color: var(--secondary);
      color: var(--text-dark);
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 4px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s;
    }

    .btn:hover {
      background-color: #b8952d;
    }

    /* General Section Styling */
    section {
      padding: 4rem 2rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-title {
      text-align: center;
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 2rem;
    }

    /* Grid Layouts */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .card {
      background: #ffffff;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      border-top: 4px solid var(--primary);
    }

    /* Pricing Cards */
    .price-tag {
      font-size: 1.5rem;
      color: var(--primary);
      font-weight: bold;
      margin: 1rem 0;
    }

    /* Reviews */
    .review-author {
      margin-top: 1rem;
      font-weight: bold;
      color: var(--primary);
    }

    /* FAQ Accordion */
    .faq-item {
      background: #ffffff;
      margin-bottom: 1rem;
      border-radius: 4px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      text-align: left;
      padding: 1rem;
      background: none;
      border: none;
      font-size: 1.1rem;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      padding: 0 1rem;
      color: var(--text-muted);
    }

    .faq-answer p {
      padding-bottom: 1rem;
    }

    /* Footer */
    footer {
      background-color: var(--primary);
      color: #ffffff;
      text-align: center;
      padding: 2rem;
      margin-top: 4rem;
    }

    /* Responsive Nav */
    @media (max-width: 768px) {
      nav {
        flex-direction: column;
        gap: 1rem;
      }
      .hero h1 {
        font-size: 2rem;
      }
    }
