
    :root {
      --primary: #4B2D83;
      --secondary: #E87A2C;
      --light: #F5F0FF;
      --dark: #1A1A1A;
      --grey: #F0F0F0;
      --accent: #8A62D1;
    }

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

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

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

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
      margin-bottom: 1rem;
    }

    p {
      margin-bottom: 1.5rem;
    }

    .btn {
      display: inline-block;
      padding: 0.8rem 2rem;
      background: var(--secondary);
      color: white;
      border: none;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 700;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn:hover {
      background: var(--primary);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

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

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

    .section {
      position: relative;
      padding: 5rem 2rem;
    }

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

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

    /* Hero Section */
    .hero {
      min-height: 90vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--light);
    }

    .hero__content {
      max-width: 600px;
      position: relative;
      z-index: 1;
    }

    .hero__title {
      font-size: 3.5rem;
      color: var(--primary);
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }

    .hero__subtitle {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      color: var(--dark);
    }

    .hero__image {
      position: absolute;
      right: -5%;
      top: 50%;
      transform: translateY(-50%);
      width: 55%;
      height: auto;
      border-radius: 30px 0 0 30px;
      box-shadow: -20px 20px 40px rgba(0,0,0,0.2);
      z-index: 0;
    }

    /* Featured Section */
    .featured {
      background: white;
      padding: 6rem 2rem;
    }

    .featured__title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: var(--primary);
    }

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

    .featured__item {
      background: var(--grey);
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .featured__item:hover {
      transform: translateY(-10px);
    }

    .featured__image {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .featured__content {
      padding: 1.5rem;
    }

    .featured__name {
      font-size: 1.3rem;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .featured__price {
      font-weight: 700;
      font-size: 1.2rem;
      color: var(--secondary);
      margin-bottom: 1rem;
    }

    /* Why Choose Us */
    .why-us {
      background: var(--primary);
      color: white;
      padding: 6rem 2rem;
    }

    .why-us__title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: white;
    }

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

    .why-us__item {
      text-align: center;
      padding: 2rem;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      transition: all 0.3s ease;
    }

    .why-us__item:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: scale(1.05);
    }

    .why-us__icon {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      color: var(--secondary);
    }

    .why-us__subtitle {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      color: white;
    }

    /* Gallery */
    .gallery {
      padding: 6rem 2rem;
      background: var(--light);
    }

    .gallery__title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: var(--primary);
    }

    .gallery__grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(12, 50px);
      gap: 1rem;
    }

    .gallery__item:nth-child(1) {
      grid-column: 1 / 7;
      grid-row: 1 / 7;
    }

    .gallery__item:nth-child(2) {
      grid-column: 7 / 13;
      grid-row: 1 / 5;
    }

    .gallery__item:nth-child(3) {
      grid-column: 7 / 13;
      grid-row: 5 / 13;
    }

    .gallery__item:nth-child(4) {
      grid-column: 1 / 7;
      grid-row: 7 / 13;
    }

    .gallery__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
      transition: all 0.3s ease;
    }

    .gallery__image:hover {
      transform: scale(1.02);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    /* Testimonials */
    .testimonials {
      padding: 6rem 2rem;
      background: white;
    }

    .testimonials__title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: var(--primary);
    }

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

    .testimonial {
      background: var(--grey);
      padding: 2rem;
      border-radius: 10px;
      position: relative;
    }

    .testimonial::before {
      content: """;
      position: absolute;
      top: 10px;
      left: 10px;
      font-size: 5rem;
      color: var(--accent);
      opacity: 0.2;
      font-family: 'Georgia', serif;
    }

    .testimonial__text {
      position: relative;
      z-index: 1;
      margin-bottom: 1.5rem;
    }

    .testimonial__author {
      font-weight: 700;
      color: var(--primary);
    }

    /* Contact Section */
    .contact {
      padding: 6rem 2rem;
      background: var(--dark);
      color: white;
    }

    .contact__title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: white;
    }

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

    .contact__form {
      background: rgba(255, 255, 255, 0.05);
      padding: 2rem;
      border-radius: 10px;
    }

    .form__group {
      margin-bottom: 1.5rem;
    }

    .form__label {
      display: block;
      margin-bottom: 0.5rem;
      color: white;
    }

    .form__input {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      color: white;
    }

    .form__input:focus {
      outline: none;
      border-color: var(--secondary);
    }

    .contact__info {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .contact__item {
      display: flex;
      align-items: center;
      margin-bottom: 1.5rem;
    }

    .contact__icon {
      font-size: 1.5rem;
      margin-right: 1rem;
      color: var(--secondary);
    }

    @media (max-width: 768px) {
      .hero__title {
        font-size: 2.5rem;
      }

      .hero__image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-top: 2rem;
        border-radius: 10px;
      }

      .hero__content {
        max-width: 100%;
      }

      .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 300px);
      }

      .gallery__item:nth-child(1),
      .gallery__item:nth-child(2),
      .gallery__item:nth-child(3),
      .gallery__item:nth-child(4) {
        grid-column: 1 / -1;
        grid-row: auto;
      }
    }
  