/* Body */
body{
      font-family: Arial, sans-serif;
      background: linear-gradient(to right, #273347, #374865, #4d3f65, #2c2e54, #1a232e, #1a232e);
      color: white;
}

/* Navigation Header */
.header {
      display: flex;
      justify-content: left;
      align-items: center;
      padding-top: 25px;
      padding-left: 20px; 
      padding-bottom: 70px; 
  }
  
  /* Logo in the Header */
  .logo {
      max-height: 45px;
      opacity: 0.75;
  }

/* Privacy */

.container {
      max-width: 1500px;
      margin: auto;
      /* padding: 20px; */
      border-radius: 10px;
  }

  h1 {
      font-size: 24px;
      color: #fff;
      margin-bottom: 20px;
  }

  p {
      margin: 10px 0;
  }

  span {
      font-weight: bold;
      color: #f4f4f4;
  }

  .highlight {
      color: #f4f4f4;
  }

  a {
      color: #42a5f5;
      text-decoration: none;
  }

  a:hover {
      text-decoration: underline;
  }

  .important-note {
      color: #fbc02d;
      font-weight: bold;
  }
  
/* FOOTER */

footer {
      padding: 40px 0;
  }
  
  .footer-container {
      display: flex;
      justify-content: space-between;
      padding: 0 60px;
      flex-wrap: wrap;
  }
  
  .footer-section {
      margin-bottom: 20px;
  }
  
  .footer-section h2 {
      font-size: 18px;
      margin-bottom: 10px;
  }
  
  .footer-section p,
  .footer-section ul {
      font-size: 16px;
      line-height: 1.5;
      padding-top: 20px;
  }
  
  .footer-section a {
      color: white;
      text-decoration: none;
  }
  
  .footer-section a:hover {
      text-decoration: underline;
  }
  
  .footer-section ul {
      list-style-type: none;
      padding: 0;
  }
  
  .footer-section ul li {
      margin-bottom: 10px;
  }
  
  .footer-section .social ul {
      display: flex;
      gap: 15px;
  }
  
  .footer-section .social ul li a {
      display: flex;
      align-items: center;
  }
  
  .footer-bottom {
      text-align: center;
      padding: 20px;
      border-top: 1px solid white;
      width: 92%;
  }
  
  .footer-bottom p {
      margin: 10px 0 0;
      font-size: 12px;
  }
  
  .download-app {
      background-color: #2561AB;
      color: white;
      padding: 20px 30px;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      font-size: 15px;
  }
  
  .download-app:hover {
      background-color: #28548a;
  }
  
  .footer-button {
      padding-top: 140px;
      padding-bottom: 50px;
      padding-right: 60px;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
  }
  
  .button-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid white;
      width: 100%;
      margin-top: 20px;
  }