:root {
    --primary: #06567b;
    --light-bg: #ffffff;
    --card-bg: #ffffff;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: var(--light-bg);
    color: var(--primary);
    line-height: 1.7;
  }
  
  .container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
  }
  
  /* HEADER */
  .privacy-header {
    padding: 25px 0;
    background: white;
    border-bottom: 1px solid rgba(6,86,123,0.1);
  }
  
  .logo img {
    height: 50px;
  }
  
  /* HERO */
  .privacy-hero {
    text-align: center;
    padding: 80px 20px;
  }
  
  .hero-icon {
    font-size: 50px;
    margin-bottom: 20px;
  }
  
  .privacy-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 15px;
  }
  
  .privacy-hero p {
    font-weight: 300;
    opacity: 0.8;
  }
  
  /* CONTENT */
  .privacy-content {
    padding: 60px 0;
  }
  
  .policy-card {
    background: var(--card-bg);
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(6,86,123,0.05);
    transition: all 0.3s ease;
  }
  
  .policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(6,86,123,0.08);
  }
  
  .policy-card h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    font-size: 22px;
  }
  
  .policy-card h3 i {
    margin-right: 10px;
  }
  
  .policy-card ul {
    padding-left: 20px;
  }
  
  .policy-card ul li {
    margin-bottom: 8px;
  }
  
  /* UPDATE */
  .update {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    opacity: 0.7;
  }
  
  /* FOOTER */
  .privacy-footer {
    text-align: center;
    padding: 30px;
    background: white;
    border-top: 1px solid rgba(6,86,123,0.1);
    font-size: 14px;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .privacy-hero h1 {
      font-size: 30px;
    }
  
    .policy-card {
      padding: 25px;
    }
  }
  
  /* BACK HOME BUTTON */

.back-home-wrapper {
    text-align: center;
    margin: 60px 0;
  }
  
  .back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #06567b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }
  
  .back-home-btn i {
    font-size: 14px;
  }
  
  .back-home-btn:hover {
    background: transparent;
    color: #06567b;
    border: 1px solid #06567b;
    transform: translateY(-3px);
  }
  