
    /* Global Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Playfair Display', serif;
      color: #333333;
      overflow-x: hidden;
      background-color: #faf5f7;
      line-height: 1.6;
    }
    
    /* Header Section */
    .hero {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      background: linear-gradient(135deg, #fce4ec 0%, #f8bfbf 100%);
      color: #D4AF37;
      text-align: center;
      padding: 40px 20px;
      overflow: hidden;
    }
    
    .hero-content {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      max-width: 1200px;
      z-index: 2;
      gap: 50px;
    }
    
    .hero-left {
      flex: 1;
      display: flex;
      justify-content: center;
      max-width: 450px;
    }
    
    .header-photo {
      width: 100%;
      height: auto;
      max-height: 500px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      border: 3px solid #D4AF37;
    }
    
    .hero-right {
      flex: 1;
      text-align: left;
      max-width: 600px;
    }
    
    .title {
      font-size: 3.5rem;
      color: #D4AF37;
      margin-bottom: 15px;
      position: relative;
      padding-bottom: 15px;
    }
    
    .title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100px;
      height: 3px;
      background: #D4AF37;
    }
    
    .hero-right p {
      font-size: 1.3rem;
      margin-bottom: 20px;
      color: #5e4a4a;
    }
    
    .trust-badges {
      display: flex;
      gap: 15px;
      margin-top: 25px;
      flex-wrap: wrap;
    }
    
    .badge {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.6);
      padding: 8px 15px;
      border-radius: 50px;
      font-size: 0.9rem;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }
    
    .badge i {
      color: #D4AF37;
      font-size: 1.2rem;
    }
    
    /* Shared Button Styles */
    .btn,
    #lookup-invoice,
    .inline-enter-btn {
      padding: 12px 30px;
      font-size: 1rem;
      font-weight: bold;
      color: white;
      border-radius: 5px;
      border: none;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
      background: #D4AF37;
      transition: transform 0.3s ease, background 0.3s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    
    .btn::before,
    #lookup-invoice::before,
    .inline-enter-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #c19b2c;
      z-index: -1;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    
    .btn:hover::before,
    #lookup-invoice:hover::before,
    .inline-enter-btn:hover::before {
      transform: scaleX(1);
    }
    
    .btn:hover,
    #lookup-invoice:hover,
    .inline-enter-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }
    
    /* Position the Enter button properly */
    #lookup-invoice,
    .inline-enter-btn {
      position: absolute;
      right: 5px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      padding: 8px 15px;
      font-size: 0.9rem;
    }
    
    /* Navigation */
    .navbar {
      position: sticky;
      top: 0;
      background: linear-gradient(to right, #FCE4EC, #F8BFBF);
      box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
      padding: 15px 30px;
      z-index: 1000;
      border-bottom: 2px solid #D4AF37;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .nav-links {
      list-style: none;
      display: flex;
      gap: 20px;
    }
    
    .nav-links li a {
      text-decoration: none;
      font-size: 18px;
      font-weight: bold;
      padding: 8px 15px;
      color: #D4AF37;
      border-radius: 20px;
      background-color: rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }
    
    .nav-links li a:hover {
      background: rgba(255, 255, 255, 0.4);
      color: #c19b2c;
      box-shadow: 0 0 12px rgba(255, 215, 0, 0.2);
    }
    
    .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: #D4AF37;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .logo i {
      font-size: 2rem;
    }
    
    /* Payment Form Section */
    .consultation-section {
      padding: 60px 20px;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23faf5f7"/><path d="M0 50 Q 25 30, 50 50 T 100 50" stroke="%23fce4ec" fill="none" stroke-width="0.5"/></svg>');
      background-size: 300px;
    }
    
    .consultation-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    
    .majestic-heading {
      font-size: 2.5rem;
      color: #D4AF37;
      font-weight: bold;
      margin-bottom: 10px;
      position: relative;
      display: inline-block;
    }
    
    .majestic-heading::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: #D4AF37;
    }
    
    .majestic-text {
      font-size: 1.2rem;
      color: #5e4a4a;
      margin: 30px 0 40px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .make-payment-container {
      display: flex;
      justify-content: center;
      position: relative;
    }
    
    .payment-form {
      width: 100%;
      max-width: 550px;
      background: #fff;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      position: relative;
      border: 1px solid #f0e0e0;
    }
    
    .security-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 25px;
      padding-bottom: 15px;
      border-bottom: 1px solid #f0e0e0;
    }
    
    .security-header i {
      color: #D4AF37;
      font-size: 1.5rem;
    }
    
    .form-group {
      margin-bottom: 25px;
      text-align: left;
      position: relative;
    }
    
    .form-group label {
      font-weight: bold;
      color: #444;
      display: block;
      margin-bottom: 8px;
      font-size: 1.05rem;
    }
    
    .gold-input {
      height: 50px;
      border: 1px solid #e0d0d0;
      border-radius: 5px;
      padding-left: 15px;
      font-size: 1rem;
      box-sizing: border-box;
      width: 100%;
      transition: all 0.3s ease;
      background: #fcf9f9;
    }
    
    .gold-input:focus {
      outline: none;
      border-color: #D4AF37;
      box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
    }
    
    .form-group .input-icon {
      position: absolute;
      right: 15px;
      top: 40px;
      color: #D4AF37;
      font-size: 1.2rem;
    }
    
    .payment-options {
      display: flex;
      gap: 20px;
      margin-top: 30px;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .payment-option {
      width: 120px;
      height: 70px;
      border: 1px solid #e0d0d0;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      background: #fff;
    }
    
    .payment-option:hover {
      border-color: #D4AF37;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .payment-option.selected {
      border: 2px solid #D4AF37;
      background: rgba(212, 175, 55, 0.05);
    }
    
    .payment-option i {
      font-size: 2.5rem;
      color: #555;
    }
    
    .payment-option.paypal i {
      color: #003087;
    }
    
    .payment-option.credit-card i {
      color: #1a1f71;
    }
    
    .payment-option.apple-pay i {
      color: #000;
    }
    
    .loading-spinner {
      font-style: italic;
      margin-top: 15px;
      color: #5e4a4a;
    }
    
    /* Footer Section */
    .footer {
      text-align: center;
      padding: 40px 20px;
      background: linear-gradient(to bottom, #FCE4EC, #F8BFBF);
      color: #5e4a4a;
      position: relative;
      overflow: hidden;
      font-size: 1.1rem;
    }
    
    .footer-content {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .footer-content p {
      margin: 0;
      font-family: 'Georgia', serif;
      font-size: 1.1rem;
      letter-spacing: 0.5px;
    }
    
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 25px;
      margin: 20px 0;
      flex-wrap: wrap;
    }
    
    .footer-links a {
      color: #5e4a4a;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .footer-links a:hover {
      color: #D4AF37;
      text-decoration: underline;
    }
    
    .copyright {
      margin-top: 25px;
      color: #5e4a4a;
      font-size: 0.95rem;
    }
    
    .footer-line {
      width: 100px;
      height: 3px;
      background: #D4AF37;
      margin: 20px auto;
      border-radius: 10px;
    }
    
    /* Responsive Design */
    @media (max-width: 900px) {
      .hero-content {
        flex-direction: column;
        text-align: center;
      }
      
      .hero-right {
        text-align: center;
        max-width: 100%;
      }
      
      .title::after {
        left: 50%;
        transform: translateX(-50%);
      }
      
      .trust-badges {
        justify-content: center;
      }
      
      .header-photo {
        max-width: 400px;
        max-height: 400px;
      }
    }
    
    @media (max-width: 600px) {
      .title {
        font-size: 2.5rem;
      }
      
      .hero-right p {
        font-size: 1.1rem;
      }
      
      .majestic-heading {
        font-size: 2rem;
      }
      
      .payment-form {
        padding: 30px 20px;
      }
      
      .trust-badges {
        flex-direction: column;
        align-items: center;
      }
      
      .header-photo {
        max-width: 300px;
        max-height: 350px;
      }
      
      .hero {
        min-height: auto;
        padding: 30px 15px;
      }
    }
    
    /* Animation */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .animate {
      animation: fadeIn 0.8s ease-out forwards;
    }
    
    .delay-1 {
      animation-delay: 0.1s;
    }
    
    .delay-2 {
      animation-delay: 0.2s;
    }
    
    .delay-3 {
      animation-delay: 0.3s;
    }
    
    .delay-4 {
      animation-delay: 0.4s;
    }
  @media (max-width: 600px) {
  .payment-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    text-align: center;
  }

  .payment-footer .footer-logo {
    font-size: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .payment-footer .back-home-btn {
    margin-top: 8px;
    padding: 2px 5px;
    font-size: 0.45rem;
    display: inline-block;
    background: white;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    border-radius: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .payment-footer .back-home-btn:hover {
    background: #D4AF37;
    color: white;
  }
}
