  .mobileExtra {
      margin-left: 1rem;
  }

  @media (max-width: 991px) {
      .mobileExtra {
          margin-left: 0;
          margin-bottom: 5px
      }
  }

  #footer {
      background-color: #1a1a1a;
      color: #f0f0f0;
      font-family: 'Inter', sans-serif;
      padding: 50px 0 30px;
  }

  #footer .container {
      max-width: 1200px;
  }

  #footer .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
  }

  #footer h3 {
      color: #3498db;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
  }

  #footer h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 30px;
      background-color: #3498db;
  }

  #footer p {
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 15px;
      color: #bbb;
  }

  #footer .footer-links a {
      color: #bbb;
      text-decoration: none;
      display: block;
      margin-bottom: 12px;
      transition: all 0.3s ease;
  }

  #footer .footer-links a:hover {
      color: #3498db;
      transform: translateX(5px);
  }

  #footer .contact-info {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
  }

  #footer .contact-info i {
      color: #3498db;
      margin-right: 10px;
      font-size: 18px;
  }

  #footer .social-links {
      margin-top: 20px;
  }

  #footer .social-links a {
      display: inline-block;
      width: 36px;
      height: 36px;
      background-color: #333;
      color: #f0f0f0;
      border-radius: 50%;
      text-align: center;
      line-height: 36px;
      margin-right: 10px;
      transition: all 0.3s ease;
  }

  #footer .social-links a:hover {
      background-color: #3498db;
      transform: translateY(-3px);
  }

  .copyright {
      text-align: center;
      font-size: 13px;
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid #333;
      color: #888;
  }

  .back-to-top {
      position: fixed;
      right: 20px;
      bottom: 20px;
      background: #3498db;
      color: #fff;
      width: 40px;
      height: 40px;
      text-align: center;
      line-height: 40px;
      border-radius: 50%;
      transition: all 0.3s ease;
      opacity: 0.7;
  }

  .back-to-top:hover {
      background: #2980b9;
      opacity: 1;
  }

  .privacy-policy {
      background-color: #f8f9fa;
      padding: 50px 0;
  }

  .policy-card {
      background-color: #ffffff;
      border-radius: 15px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
  }

  .policy-header {
      background-color: rgba(1, 4, 136, 0.9);
      color: #ffffff;
      padding: 30px;
      text-align: center;
  }

  .policy-header h1 {
      font-size: 2.5rem;
      margin: 0;
  }

  .policy-body {
      padding: 40px;
  }

  .policy-section {
      margin-bottom: 30px;
  }

  .policy-section h2 {
      color: rgba(1, 4, 136, 0.9);
      font-size: 1.5rem;
      margin-bottom: 15px;
  }

  .policy-section p {
      color: #333;
      line-height: 1.6;
  }