
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(145deg, #fff0f5 0%, #ffd9e8 100%);
      background-attachment: fixed;
      color: #1e1e2a;
      overflow-x: hidden;
    }
    h1, h2, h3, h4, .logo-text { font-family: 'Playfair Display', serif; }

    /* Navbar */
    .navbar-glass {
      background: rgba(255, 240, 245, 0.92);
      backdrop-filter: blur(14px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.06);
      transition: all 0.3s;
    }
    .navbar-brand img {
      width: 45px;
      height: 45px;
      object-fit: cover;
      border: 2px solid #ff6a9e;
      border-radius: 50%;
      transition: transform 0.4s;
    }
    .navbar-brand:hover img { transform: scale(1.05); }
    .logo-text {
      font-weight: 700;
      font-size: 1.5rem;
      background: linear-gradient(135deg, #b63b6b, #f15f8e);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .nav-link, .dropdown-item {
      font-weight: 500;
      transition: all 0.3s ease;
    }
    .nav-link:hover, .dropdown-item:hover {
      color: #e6397c !important;
      transform: translateY(-2px);
    }
    .icon-btn {
      background: transparent;
      border: none;
      font-size: 1.3rem;
      position: relative;
      transition: 0.3s;
      color: #4a2e38;
    }
    .icon-btn:hover { color: #d43f81; transform: scale(1.1); }
    .cart-badge {
      position: absolute;
      top: -8px;
      right: -12px;
      background: #e6397c;
      color: white;
      font-size: 0.7rem;
      border-radius: 50%;
      padding: 2px 6px;
      font-weight: bold;
    }

    /* Loader */
    .loader-wrapper {
      position: fixed;
      inset: 0;
      background: #ffc0db;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.5s;
    }
    .loader {
      width: 50px;
      height: 50px;
      border: 5px solid white;
      border-top: 5px solid #e6397c;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    #backToTop {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #e6397c;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      cursor: pointer;
      opacity: 0;
      transition: 0.4s;
      z-index: 99;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    /* ============================================ */
    /* ABOUT HERO */
    /* ============================================ */
    .about-hero {
      background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3)),
                  url('https://images.unsplash.com/photo-1539109136881-3be0616acf4b?w=1600&h=500&fit=crop');
      background-size: cover;
      background-position: center;
      border-radius: 2rem;
      padding: 5rem 3rem;
      text-align: center;
      color: white;
      margin-bottom: 3rem;
      position: relative;
      overflow: hidden;
    }
    .about-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(230,57,124,0.3), rgba(251,191,36,0.1));
      border-radius: 2rem;
    }
    .about-hero h1 {
      font-size: 4rem;
      font-weight: 700;
      position: relative;
      z-index: 1;
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    .about-hero .gold-line {
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, #e6397c, #fbbf24);
      margin: 1.5rem auto;
      border-radius: 2px;
      position: relative;
      z-index: 1;
    }
    .about-hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
      opacity: 0.9;
      position: relative;
      z-index: 1;
    }

    /* ============================================ */
    /* SECTION STYLES */
    /* ============================================ */
    .section-title {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
      position: relative;
      display: inline-block;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #e6397c, #fbbf24);
      border-radius: 2px;
    }
    .section-title.text-center::after {
      left: 50%;
      transform: translateX(-50%);
    }

    /* ============================================ */
    /* ABOUT CARD */
    /* ============================================ */
    .about-card {
      background: white;
      border-radius: 1.5rem;
      padding: 2.5rem;
      box-shadow: 0 8px 30px rgba(0,0,0,0.06);
      transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      height: 100%;
      border: 1px solid rgba(255,255,255,0.3);
    }
    .about-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }
    .about-card .card-icon {
      font-size: 2.5rem;
      color: #e6397c;
      margin-bottom: 1rem;
    }

    /* ============================================ */
    /* GOALS / WHAT WE OFFER */
    /* ============================================ */
    .goal-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1rem 1.5rem;
      background: white;
      border-radius: 1rem;
      box-shadow: 0 4px 15px rgba(0,0,0,0.04);
      transition: all 0.4s;
      border-left: 3px solid transparent;
    }
    .goal-item:hover {
      transform: translateX(8px);
      border-left-color: #e6397c;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }
    .goal-item .goal-icon {
      font-size: 1.5rem;
      color: #e6397c;
      min-width: 36px;
      text-align: center;
    }
    .goal-item .goal-text {
      font-size: 0.95rem;
      color: #4a2e38;
    }

    /* ============================================ */
    /* OFFER GRID */
    /* ============================================ */
    .offer-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.8rem 1.2rem;
      background: white;
      border-radius: 0.8rem;
      transition: all 0.3s;
      border: 1px solid rgba(255,255,255,0.3);
    }
    .offer-item:hover {
      transform: scale(1.02);
      box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    }
    .offer-item .offer-icon {
      font-size: 1.3rem;
    }

    /* ============================================ */
    /* WHY CHOOSE US */
    /* ============================================ */
    .why-card {
      background: white;
      border-radius: 1.5rem;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 8px 30px rgba(0,0,0,0.06);
      transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      height: 100%;
      border: 1px solid rgba(255,255,255,0.3);
    }
    .why-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    }
    .why-card .why-icon {
      font-size: 2.5rem;
      color: #e6397c;
      margin-bottom: 1rem;
    }
    .why-card h5 {
      font-weight: 700;
    }

    /* ============================================ */
    /* FAQ SECTION */
    /* ============================================ */
    .faq-item {
      background: white;
      border-radius: 1rem;
      margin-bottom: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.04);
      transition: all 0.3s;
    }
    .faq-item:hover {
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }
    .faq-item .faq-question {
      padding: 1.2rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 600;
      color: #1e1e2a;
      transition: 0.3s;
      background: white;
      border: none;
      width: 100%;
      text-align: left;
    }
    .faq-item .faq-question:hover {
      color: #e6397c;
    }
    .faq-item .faq-question .faq-toggle {
      transition: transform 0.3s;
    }
    .faq-item .faq-question .faq-toggle.active {
      transform: rotate(180deg);
    }
    .faq-item .faq-answer {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      color: #6c757d;
      line-height: 1.7;
    }
    .faq-item .faq-answer.open {
      max-height: 300px;
      padding: 0 1.5rem 1.5rem;
    }

    /* ============================================ */
    /* CTA SECTION */
    /* ============================================ */
    .cta-about {
      background: linear-gradient(135deg, #1a1a2e, #2d2d44);
      border-radius: 2rem;
      padding: 4rem 3rem;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }
    .cta-about::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(230,57,124,0.1), transparent);
      border-radius: 50%;
    }
    .cta-about h2 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 2.5rem;
      position: relative;
      z-index: 1;
    }
    .cta-about p {
      font-size: 1.1rem;
      opacity: 0.8;
      max-width: 700px;
      margin: 1rem auto 2rem;
      position: relative;
      z-index: 1;
    }
    .cta-about .btn-cta {
      background: linear-gradient(95deg, #e6397c, #fbbf24);
      border: none;
      color: white;
      padding: 14px 40px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.4s;
      position: relative;
      z-index: 1;
    }
    .cta-about .btn-cta:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 12px 35px rgba(230,57,124,0.4);
      color: white;
    }

    /* Animations */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .animate-on-scroll {
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
    }
    .animate-on-scroll:nth-child(1) { animation-delay: 0.1s; }
    .animate-on-scroll:nth-child(2) { animation-delay: 0.2s; }
    .animate-on-scroll:nth-child(3) { animation-delay: 0.3s; }
    .animate-on-scroll:nth-child(4) { animation-delay: 0.4s; }
    .animate-on-scroll:nth-child(5) { animation-delay: 0.5s; }
    .animate-on-scroll:nth-child(6) { animation-delay: 0.6s; }

    footer a {
      text-decoration: none;
      transition: 0.2s;
    }
    footer a:hover { color: #ff80a6 !important; }
    .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      margin: 0 6px;
      color: white;
      font-size: 1.2rem;
      transition: none;
    }
    .social-icon:hover {
      background: #e6397c;
      color: white;
      transform: none;
      box-shadow: none;
    }
    .btn-pink {
      background: linear-gradient(95deg, #e6397c, #ff8cb0);
      border: none;
      color: white;
      font-weight: 600;
      border-radius: 40px;
      padding: 8px 25px;
      transition: 0.4s;
    }
    .btn-pink:hover {
      transform: scale(1.02);
      box-shadow: 0 8px 18px #e6397c60;
      color: white;
    }

    @media (max-width: 768px) {
      .about-hero { padding: 3rem 1.5rem; }
      .about-hero h1 { font-size: 2.5rem; }
      .about-hero p { font-size: 1rem; }
      .section-title { font-size: 2rem; }
      .about-card { padding: 1.5rem; }
      .cta-about { padding: 2.5rem 1.5rem; }
      .cta-about h2 { font-size: 1.8rem; }
    }
    @media (max-width: 576px) {
      .goal-item { padding: 0.8rem 1rem; }
      .offer-item { padding: 0.6rem 1rem; font-size: 0.9rem; }
    }

