 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    line-height: 1.7;
    color: #3d3d3d;
    background: linear-gradient(135deg, #f5f7fa10 0%, #f5f7fa10 100%);
  }

  /* Hero Section */
  .hero {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background-image: url("{% static '/img/Textures_Fractured_cropped.jpg' %}");
    background-size: cover;
    /* Optional: Scale the image to cover the entire element */
    background-repeat: no-repeat;
    /* Optional: Prevent the image from repeating */
    background-position: center center;
    background-attachment: fixed;
    color: white;

  }

  .hero .container.content {
    padding: 150px 0;
    text-align: left;
  }

  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'montserrat';
    text-shadow: rgba(40, 41, 73, 0.4) 0px 0 20px;
    color: #4e4e4e;
    letter-spacing: 0.05em;
  }

  .hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    color: #696969;
    max-width: 600px;
  }


  .hero .cta-button {
    max-width: fit-content;
  }

  .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #30435c;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  /* Features Section */


  .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
  }

  .content-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
  }

  .last-updated {
    text-align: center;
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-style: italic;
  }

  h2.h2-privacy {
    color: #666666;
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e2e2e2;
    font-weight: 600;
  }

  h2:first-of-type {
    margin-top: 0;
  }

  h3.h2-privacy {
    color: #444444;
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 600;
  }

  p {
    margin-bottom: 1rem;
    text-align: justify;
  }

  .inner-content ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style: none;
  }

  .inner-content ul li {
    /* position: relative;
    padding-left: 1.5rem; */
    margin-bottom: 0.5rem;
  }

  ul li.point:before {
    content: "•";
    color: #9e9e9e;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
  }

  .highlight-box {
    background: #f0f7ff;
    border-left: 4px solid #9c9c9c;
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 4px;
  }

  .highlight-box strong {
    color: #707070;
  }

  .contact-info {
    background: linear-gradient(135deg, #626468 0%, #949596 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2.5rem;
  }

  .contact-info h2 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
    margin-top: 0;
  }

  .contact-info p {
    margin-bottom: 0.5rem;
    text-align: left;
  }

  .contact-info a {
    color: #fff;
    text-decoration: underline;
  }

  .separator {
    height: 2px;
    background: linear-gradient(90deg, transparent, #9b9b9c, transparent);
    margin: 2rem 0;
  }

  strong {
    color: #5c5c5c;
    font-weight: 600;
  }

  @media (max-width: 768px) {
    .header h1 {
      font-size: 2rem;
    }

    .content-card {
      padding: 2rem 1.5rem;
    }

    .container {
      padding: 2rem 1rem;
    }

    h2.h2-privacy {
      font-size: 1.5rem;
    }
  }