/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    box-sizing: border-box;
 
  }
  
  /* Root CSS Variables for Consistency */
  :root {
    --primary-color: #1d3557;
    --secondary-color: #457b9d;
    --accent-color: #9a141f;
    --bg-color: #f4f4f4;
    --white: #fff;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.25);
  }
  
  /* Section Styling */
  .compliance-policies-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    overflow: hidden;
    position: relative;
  }
  
  .container {
    width: 85%;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-heading h2 {
    margin-top: 20vh;
    font-size: 3.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px var(--shadow-dark);
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }
  
  .section-heading h2:hover {
    color: var(--accent-color);
    text-shadow: 2px 2px 20px var(--accent-color);
  }
  
  .section-description {
    font-size: 1.5rem;
    margin-bottom: 60px;
    color: #f1faee;
    line-height: 1.8;
    text-shadow: 1px 1px 4px var(--shadow-light);
    opacity: 0.9;
    transition: opacity 0.3s ease;
  }
  
  .section-description:hover {
    opacity: 1;
  }
  
  /* Policy Sections */
  .policy-section {
    background: var(--white);
    padding: 60px 0;
    margin-bottom: 60px;
    text-align: left;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .policy-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px var(--shadow-dark);
  }
  
  .policy-heading h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    transition: color 0.3s ease;
  }
  
  .policy-heading h3:hover {
    color: var(--accent-color);
  }
  
  .policy-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
    padding: 20px;
  }
  
  .policy-text {
    flex: 1;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #333;
  }
  
  .policy-image {
    flex: 0.4;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  
  .policy-image img {
    width: 100%;
   
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .policy-image img:hover {
    transform: scale(1.05);
  
  }
  
  .policy-details {
    list-style-type: disc;
    padding-left: 20px;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 20px;
  }
  
  .policy-details li {
    margin-bottom: 10px;
    transition: color 0.3s ease;
  }
  
  .policy-details li:hover {
    color: var(--accent-color);
  }
  
  /* Action Button */
  .actions {
    margin-top: 60px;
  }
  
  .action-button {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 18px 36px;
    font-size: 1.4rem;
    border-radius: 35px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .action-button:hover {
    background-color: #d62828;
    transform: scale(1.05);
    box-shadow: 0 15px 30px var(--shadow-dark);
  }
  
  /* Hover Animation for Policy Cards */
  .policy-card {
    position: relative;
    background-color: var(--white);
    color: #333;
    border-radius: 15px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
  }
  
  .policy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px var(--shadow-dark);
    opacity: 1;
  }
  
  /* AOS Animations */
  [data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  [data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Smooth Scroll */
  html {
    scroll-behavior: smooth;
  }
  
 /* Responsive Design */
@media (max-width: 768px) {
    .container {
      width: 90%;
    }
  
    .section-heading h2 {
      font-size: 2.8rem;
      text-align: center;
      margin-bottom: 25px;
    }
  
    .section-description {
      font-size: 1.3rem;
      margin-bottom: 40px;
      text-align: center;
    }
  
    .policy-content {
      flex-direction: column;
      align-items: center;
      gap: 40px;
      margin-bottom: 40px;
    }
  
    .policy-text {
      width: 100%;
      text-align: center;
      padding: 0 20px;
      font-size: 1.1rem;
      line-height: 1.6;
    }
  
    .policy-image {
      width: 100%;
      max-width: 450px;
      margin-top: 30px;
    }
  
    .policy-details {
      list-style-type: disc;
      padding-left: 0;
      font-size: 1.1rem;
      color: var(--primary-color);
    }
  
    .policy-details li {
      margin-bottom: 12px;
    }
  
    .action-button {
      padding: 14px 30px;
      font-size: 1.3rem;
      width: 80%;
      margin: 0 auto;
      transition: all 0.3s ease;
    }
  
    .action-button:hover {
      transform: scale(1.05);
      background-color: #d62828;
    }
  }
  
  /* Small Mobile Devices (Max-width: 480px) */
  @media (max-width: 480px) {
    .section-heading h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }
  
    .section-description {
      font-size: 1.2rem;
      margin-bottom: 20px;
    }
  
    .policy-heading h3 {
      font-size: 2rem;
      text-align: center;
      margin-bottom: 15px;
    }
  
    .policy-content {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
  
    .policy-text {
      font-size: 1rem;
      padding: 0 10px;
      text-align: center;
    }
  
    .policy-image {
      width: 100%;
      margin-top: 20px;
    }
  
    .policy-details {
      padding-left: 0;
      font-size: 1rem;
    }
  
    .action-button {
      padding: 14px 28px;
      font-size: 1.2rem;
      width: 100%;
      text-align: center;
      margin-top: 30px;
    }
  
    .action-button:hover {
      background-color: #d62828;
      transform: scale(1.05);
    }
  
    .policy-image img {
      width: 100%;
      max-width: 400px;
    }
  }