* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, Arial, sans-serif;
  }
  
  body {
    background: #f7f9fc;
    color: #222;
  }
  
  header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .container {
    max-width: 1100px;
    margin: auto;
    padding: 16px;
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 22px;
    font-weight: bold;
    color: #0d6efd;
  }
  
  .nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #444;
    font-weight: 500;
  }
  
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 42px;
    line-height: 1.2;
  }
  
  .hero p {
    margin: 20px 0;
    font-size: 18px;
    color: #555;
  }
  
  .btn {
    display: inline-block;
    background: #0d6efd;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 12px;
  }
  
  .features {
    background: white;
    padding: 60px 0;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 24px;
  }
  
  .card {
    background: #f1f4ff;
    padding: 24px;
    border-radius: 12px;
  }
  
  .footer {
    background: #0d6efd;
    color: white;
    padding: 30px 0;
    margin-top: 60px;
  }
  
  .footer a {
    color: white;
    margin-right: 16px;
    text-decoration: none;
  }
  
  @media (max-width: 768px) {
    .hero {
      grid-template-columns: 1fr;
      text-align: center;
    }
  }

  .logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo-wrapper img {
    height: 40px;
    width: auto;
  }
  
  /* ===== Privacy / Content Pages ===== */

.page-container {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  }
  
  .page-container h1 {
    font-size: 32px;
    margin-bottom: 12px;
  }
  
  .page-container h2 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #0d6efd;
  }
  
  .page-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #333;
  }
  
  .page-container ul {
    margin-left: 20px;
    margin-bottom: 16px;
  }
  
  .page-container li {
    margin-bottom: 6px;
    line-height: 1.6;
  }
  
  .meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  .divider {
    height: 1px;
    background: #e5e7eb;
    margin: 24px 0;
  }
  
  /* ===== Contact Form ===== */

.form-group {
    margin-bottom: 16px;
  }
  
  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 15px;
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .form-btn {
    background: #0d6efd;
    color: white;
    border: none;
    padding: 12px 26px;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .form-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  .success-msg {
    color: #198754;
    margin-top: 12px;
  }
  