  :root {
      --main-color: #FF6B00;
      --secondary-color: #1a1a1a;
      --active-color: #E85D04;
  }

  body {
      background-color: var(--secondary-color);
      color: #f1f1f1;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }

  .footer {
      color: whitesmoke;
  }

  a {
      text-decoration: none;
      color: whitesmoke;
      font-weight: bold;
  }

  .text-first {
      color: var(--main-color) !important;
  }

  #bussinessnameh2 {
      color: whitesmoke !important;
  }

  .svg,
  .bi {
      height: 1em;
      width: 1em;
      vertical-align: -0.125em;
  }

  .main-container {
      min-height: 100vh;
      background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a2a 100%);
      display: flex;
      flex-direction: column;
  }

  .content-wrapper {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 0;
  }

  .confirmation-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 2.5rem;
      text-align: center;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(10px);
      max-width: 500px;
      width: 90%;
      animation: slideUp 0.6s ease-out;
  }

  @keyframes slideUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .logo-section {
      margin-bottom: 2rem;
  }

  .logo-section img {
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
      animation: fadeIn 0.8s ease-out 0.2s both;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  .page-title {
      color: whitesmoke;
      font-weight: 600;
      margin-bottom: 1.5rem;
      animation: fadeIn 0.8s ease-out 0.4s both;
  }

  .status-message {
      border-radius: 12px;
      padding: 1.5rem;
      margin: 1.5rem 0;
      border: none;
      position: relative;
      overflow: hidden;
      animation: fadeIn 0.8s ease-out 0.6s both;
  }

  .status-message::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
  }

  .alert-success {
      background: linear-gradient(135deg, rgba(40, 167, 69, 0.15) 0%, rgba(40, 167, 69, 0.05) 100%);
      border: 1px solid rgba(40, 167, 69, 0.3);
  }

  .alert-success::before {
      background: #28a745;
  }

  .alert-danger {
      background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(220, 53, 69, 0.05) 100%);
      border: 1px solid rgba(220, 53, 69, 0.3);
  }

  .alert-danger::before {
      background: #dc3545;
  }

  .alert-warning {
      background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.05) 100%);
      border: 1px solid rgba(255, 193, 7, 0.3);
  }

  .alert-warning::before {
      background: #ffc107;
  }

  .status-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
      animation: bounceIn 0.8s ease-out 0.8s both;
  }

  @keyframes bounceIn {
      0% {
          opacity: 0;
          transform: scale(0.3);
      }

      50% {
          opacity: 1;
          transform: scale(1.05);
      }

      70% {
          transform: scale(0.9);
      }

      100% {
          opacity: 1;
          transform: scale(1);
      }
  }

  .success-icon {
      color: #28a745;
  }

  .error-icon {
      color: #dc3545;
  }

  .warning-icon {
      color: #ffc107;
  }

  .action-button {
      background: linear-gradient(135deg, var(--main-color) 0%, var(--active-color) 100%);
      color: #1a1a1a;
      border: none;
      padding: 0.8rem 2rem;
      border-radius: 8px;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      margin-top: 1rem;
      box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
      animation: fadeIn 0.8s ease-out 1s both;
  }

  .action-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45);
      color: #1a1a1a;
  }

  .footer-enhanced {
      background: rgba(0, 0, 0, 0.2);
      padding: 2rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: auto;
  }

  .footer-content {
      text-align: center;
  }

  .footer-link {
      color: var(--main-color);
      transition: color 0.3s ease;
  }

  .footer-link:hover {
      color: var(--active-color);
  }

  .heart-icon {
      color: #dc3545;
      animation: heartbeat 2s ease-in-out infinite;
  }

  @keyframes heartbeat {

      0%,
      100% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.1);
      }
  }

  @media (max-width: 768px) {
      .confirmation-card {
          padding: 2rem;
          margin: 1rem;
      }

      .page-title {
          font-size: 1.5rem;
      }

      .status-icon {
          font-size: 2.5rem;
      }
  }