.header-policy-section {
  background: linear-gradient(to right, #c8e6f0, #fefefe);

    min-height: 320px;
    border-radius: var(--border-radius);
  }

  .img-policy-floating {
    position: absolute;
    bottom: 0;
    right: 12px;
    max-height: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    z-index: 1;
  }

  @media (max-width: 768px) {
    .img-policy-floating {
      display: none;
    }
  }

  .contact-section i {
    font-size: 1rem;
    line-height: 1.2;
  }
  
  .contact-section strong {
    font-size: 0.95rem;
  }
  
  .contact-section small {
    font-size: 0.85rem;
  }
  
  .contact-section a:hover {
    color: var(--main-color);
    text-decoration: none;
  }
  
  .contact-image {
    transition: transform 0.3s ease;
  }
  .contact-image:hover {
    transform: scale(1.02);
  }