/* 
 * Cookies Policy page styles
 */

 body, html {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #000;
  }
  
  /* Main content area */
  .main-content {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    padding-top: 0;
    flex: 1 0 auto;
  }
  
  /* Full-page flex layout */
  #page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  footer {
    flex-shrink: 0;
  }
  
  /* Container for the displayed policy */
  .cookies-content {
    color: #fff;
    margin-top: 10%;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 50px;
  }
  
  /* Allow images in the policy to be responsive */
  .cookies-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em auto;
  }
  
  /* Policy title styling */
  .cookies-content h3 {
    font-family: "Sequel Sans";
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 30px;
    color: #ffffff;
  }
  
  /* Policy content styling */
  .cookies-content p {
    font-family: "Sequel Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #b0b0b0;
    margin-bottom: 20px;
  }
  
  /* Error alert */
  .cookies-alert {
    background-color: rgba(220, 53, 69, 0.2);
    color: #fff;
    border: 1px solid rgba(220, 53, 69, 0.5);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin: 30px auto;
    max-width: 80%;
  }
  
  /* Custom container size */
  .custom-container {
    width: 75%;
    margin: 0 auto;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Section spacing - for consistency with other pages */
  .section-spacing {
    margin-bottom: 3rem;
    padding-top: 3rem;
  }
  
  /* Responsive styles */
  @media (max-width: 991.98px) {
    .cookies-content {
      width: 80%;
    }
    
    .custom-container {
      width: 100%;
    }
  }
  
  @media (max-width: 767.98px) {
    .cookies-content {
      width: 90%;
      margin-top: 20%;
    }
    
    .cookies-content h3 {
      font-size: 24px;
      line-height: 32px;
    }
    
    .cookies-content p {
      font-size: 14px;
      line-height: 24px;
    }
  }