
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background-color: #3a0ca3;  /* deep navy */
      color: #e2e8f0;
      line-height: 1.6;
      scroll-behavior: smooth;
    }

    h1, h2, h3, h4, .logo, .headline-font {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* luxury accents */
    .gold {
      color: #f72585;
    }
    .emerald-bg {
      background-color: #ffd166;
    }
    .gold-border {
      border-bottom: 2px solid #f72585;
      padding-bottom: 8px;
      display: inline-block;
    }

    /* top bar */
    .top-bar {
      background-color: #3a0ca3;
      padding: 10px 0;
      font-size: 0.9rem;
      border-bottom: 1px solid #ffd166;
    }
    .top-bar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }
    .contact-info i {
      color: #f72585;
      margin-right: 8px;
    }
    .contact-info span {
      margin-right: 24px;
    }

    /* main header */
    .main-header {
      padding: 20px 0;
      background-color: #3a0ca3;
      position: sticky;
      top: 0;
      z-index: 10;
      border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    .header-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 20px;
    }
    .nav-left, .nav-right {
      display: flex;
      align-items: right;
      gap: 28px;
      font-weight: 500;
      font-size: 0.95rem;
    }
    .nav-left a, .nav-right a {
      color: #e2e8f0;
      text-decoration: none;
      transition: color 0.2s;
      letter-spacing: 0.5px;
    }
    .nav-left a:hover, .nav-right a:hover {
      color: #f72585;
    }
    .logo {
      font-size: 2rem;
      font-weight: 700;
      color: #f72585;
      line-height: 1.2;
      text-align: center;
    }
    .logo span {
      display: block;
      font-size: 0.75rem;
      letter-spacing: 4px;
      color: #a0b8cc;
      font-family: 'Montserrat', sans-serif;
      font-weight: 300;
    }
    .cta-btn {
      background: transparent;
      border: 1.5px solid #f72585;
      color: #f72585 !important;
      padding: 10px 18px;
      border-radius: 40px;
      font-weight: 600;
      transition: 0.2s;
      white-space: nowrap;
    }
    .cta-btn:hover {
      background: #f72585;
      color: #3a0ca3 !important;
    }

    /* hero */
    .hero {
      padding: 70px 0 50px;
      background: linear-gradient(145deg, #3a0ca3 0%, #7209b7 100%);
    }
    .hero-content {
      max-width: 800px;
    }
    .hero h1 {
      font-size: 4rem;
      line-height: 1.1;
      margin-bottom: 20px;
      color: #ffffff;
    }
    .hero .subhead {
      font-size: 1.3rem;
      font-weight: 300;
      margin-bottom: 30px;
      color: #cbd5e0;
    }
    .btn-group {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    .btn-primary {
      background-color: #f72585;
      color: #3a0ca3;
      border: none;
      padding: 14px 36px;
      border-radius: 40px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.2s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-primary:hover {
      background-color: #b8962b;
    }
    .btn-outline {
      background: transparent;
      border: 2px solid #f72585;
      color: #f72585;
      padding: 12px 34px;
      border-radius: 40px;
      font-weight: 600;
      text-decoration: none;
    }
    .btn-outline:hover {
      background: rgba(212, 175, 55, 0.1);
    }
    .trust-badges {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
    }
    .badge {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .badge i {
      color: #f72585;
      font-size: 1.6rem;
    }

    /* about preview */
    .section {
      padding: 80px 0;
      border-bottom: 1px solid rgba(58, 12, 163, 0.3);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }
    .about-text h2 {
      font-size: 2.8rem;
      margin-bottom: 20px;
    }
    .highlight-list {
      list-style: none;
      margin: 25px 0;
    }
    .highlight-list li {
      margin: 12px 0;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .highlight-list i {
      color: #ffd166;
      font-size: 1.4rem;
    }

    /* cards why us */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      margin-top: 40px;
    }
    .premium-card {
      background: rgba(58, 12, 163, 0.8);
      backdrop-filter: blur(4px);
      padding: 30px 20px;
      border-radius: 16px;
      border: 1px solid rgba(212, 175, 55, 0.2);
      transition: 0.3s;
      text-align: center;
    }
    .premium-card:hover {
      border-color: #f72585;
      transform: translateY(-6px);
      box-shadow: 0 20px 30px -10px rgba(0,0,0,0.6);
    }
    .premium-card i {
      font-size: 2.8rem;
      color: #ffd166;
      margin-bottom: 20px;
    }
    .premium-card h3 {
      font-size: 1.6rem;
      margin-bottom: 10px;
    }

    /* services grid – 4 column */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      margin-top: 30px;
    }
    .service-category {
      background: rgba(58, 12, 163, 0.9);
      border-radius: 20px;
      padding: 25px 18px;
      border-left: 4px solid #ffd166;
    }
    .service-category h3 {
      font-size: 1.8rem;
      color: #f72585;
      margin-bottom: 8px;
    }
    .service-desc {
      font-size: 0.9rem;
      color: #aac3d4;
      margin-bottom: 20px;
      font-style: italic;
    }
    .service-list {
      list-style: none;
    }
    .service-list li {
      padding: 6px 0;
      border-bottom: 1px dotted rgba(212,175,55,0.2);
      display: flex;
      gap: 8px;
      align-items: center;
    }
    .service-list i {
      color: #ffd166;
      font-size: 0.8rem;
    }

    /* testimonial slider */
    .testimonial-container {
      position: relative;
      overflow: hidden;
      padding: 20px 10px;
    }
    .testimonial-track {
      display: flex;
      transition: transform 0.4s ease;
    }
    .testimonial-card {
      flex: 0 0 100%;
      background: #7209b7;
      border-radius: 28px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.4);
      border: 1px solid #ffd166;
    }
    .testimonial-card i.fa-quote-left {
      color: #f72585;
      font-size: 2rem;
      opacity: 0.4;
    }
    .stars {
      color: #f72585;
      margin: 15px 0;
    }
    .client-name {
      font-weight: 700;
      color: #f72585;
    }
    .slider-controls {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }
    .slider-btn {
      background: transparent;
      border: 2px solid #ffd166;
      color: white;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.4rem;
    }
    .slider-btn:hover {
      background: #ffd166;
    }

    /* FAQ accordion */
    .faq-item {
      background: #7209b7;
      margin-bottom: 16px;
      border-radius: 12px;
    }
    .faq-question {
      padding: 20px 25px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-left: 4px solid transparent;
    }
    .faq-question:hover {
      border-left-color: #f72585;
    }
    .faq-question i {
      transition: transform 0.3s;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s ease, padding 0.3s;
      color: #b0c4d9;
    }
    .faq-item.active .faq-answer {
      max-height: 200px;
      padding: 0 25px 20px;
    }
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }

    /* contact form premium */
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      background: #7209b7;
      padding: 40px;
      border-radius: 32px;
      border: 1px solid rgba(212,175,55,0.3);
    }
    .form-group {
      margin-bottom: 20px;
    }
    input, select, textarea {
      width: 100%;
      padding: 16px 20px;
      background: #7209b7;
      border: 1px solid #2B3F55;
      border-radius: 40px;
      font-size: 1rem;
      color: white;
      outline: none;
    }
    input:focus, select:focus, textarea:focus {
      border-color: #f72585;
    }
    textarea {
      border-radius: 24px;
    }
    .success-message {
      background: #ffd166;
      padding: 20px;
      border-radius: 40px;
      text-align: center;
      color: white;
      font-weight: 600;
      display: none;
    }
    .legal-modules {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
    .legal-card {
      background: #7209b7;
      padding: 25px;
      border-radius: 24px;
    }

    /* newsletter */
    .newsletter-box {
      background: #7209b7;
      padding: 40px;
      border-radius: 32px;
      border: 1px solid #f72585;
    }
    .checkbox-group {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .checkbox-group input {
      width: auto;
    }

    /* footer */
    footer {
      background: #05101F;
      padding: 50px 0 20px;
      font-size: 0.95rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }
    .social i {
      color: #f72585;
      margin-right: 15px;
      font-size: 1.5rem;
    }
    .copyright {
      text-align: center;
      padding-top: 40px;
      color: #7f8fa0;
    }
    hr {
      border: 0.5px solid #ffd166;
      margin: 30px 0;
    }

    @media (max-width: 1024px) {
      .cards-grid, .services-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
      .about-grid { grid-template-columns: 1fr; }
      .header-grid { grid-template-columns: 1fr; gap: 15px; }
      .nav-left, .nav-right { justify-content: center; flex-wrap: wrap; }
      .logo { order: -1; }
    }
    @media (max-width: 640px) {
      .cards-grid, .services-grid, .footer-grid, .legal-modules, .form-grid { grid-template-columns: 1fr; }
    }
  