:root {
  --orebit-cream: #f5f3ed;
  --orebit-dark-blue: #1D3557;
  --orebit-teal: #2D7A8E;
  --orebit-orange: #E87722;
  --orebit-gray: #666666;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--orebit-cream); color: var(--orebit-gray); }
.navbar { background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; height: 70px; padding: 0 20px; }
.logo { font-size: 24px; font-weight: bold; color: var(--orebit-dark-blue); }
.btn { display: inline-block; padding: 10px 20px; border-radius: 5px; text-decoration: none; font-weight: 600; cursor: pointer; border: none; transition: all 0.3s; }
.btn-primary { background: var(--orebit-teal); color: white; }
.btn-primary:hover { background: var(--orebit-dark-blue); }
.btn-cta { background: var(--orebit-orange); color: white; padding: 15px 30px; }
.btn-cta:hover { background: #d46610; }
.hero { background: linear-gradient(135deg, var(--orebit-dark-blue), var(--orebit-teal)); color: white; padding: 100px 20px; text-align: center; }
.hero h1 { font-size: 48px; margin-bottom: 20px; }
.hero p { font-size: 20px; margin-bottom: 30px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.privacy-trust-section { background: white; padding: 80px 20px; text-align: center; }
.privacy-trust-section h2 { font-size: 36px; color: var(--orebit-dark-blue); margin-bottom: 15px; }
.privacy-trust-section .subtitle { font-size: 18px; color: var(--orebit-gray); margin-bottom: 50px; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 60px; }
.trust-card { background: #f9f9f9; padding: 30px; border-radius: 8px; border-left: 4px solid var(--orebit-teal); transition: transform 0.3s; }
.trust-card:hover { transform: translateY(-5px); }
.trust-card .icon { font-size: 40px; margin-bottom: 15px; }
.trust-card h3 { color: var(--orebit-dark-blue); margin-bottom: 10px; font-size: 18px; }
.trust-card p { color: var(--orebit-gray); font-size: 14px; line-height: 1.6; }
.privacy-details { background: #f0f9f9; padding: 40px; border-radius: 8px; margin-bottom: 40px; }
.privacy-details h3 { color: var(--orebit-dark-blue); margin-bottom: 25px; font-size: 22px; }
.do-dont-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.do-column, .dont-column { text-align: left; padding: 20px; background: white; border-radius: 6px; }
.do-column h4 { color: #22a344; margin-bottom: 15px; font-size: 16px; }
.dont-column h4 { color: #d32f2f; margin-bottom: 15px; font-size: 16px; }
.do-column ul, .dont-column ul { list-style: none; }
.do-column li, .dont-column li { color: var(--orebit-gray); margin-bottom: 8px; font-size: 14px; line-height: 1.5; }
.cta-section { padding: 40px; background: var(--orebit-dark-blue); color: white; border-radius: 8px; }
.cta-section p { font-size: 18px; margin-bottom: 20px; }
.cta-section .btn { margin: 0 10px; }
.legal-link { font-size: 14px; margin-top: 15px; }
.legal-link a { color: #87ceeb; text-decoration: none; }
.legal-link a:hover { text-decoration: underline; }
footer { background: var(--orebit-dark-blue); color: white; text-align: center; padding: 30px; margin-top: 0; }
footer a { color: #87ceeb; text-decoration: none; }
footer a:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .navbar .container { flex-direction: column; height: auto; gap: 15px; padding: 15px 20px; }
  .logo { font-size: 20px; }
  .btn { padding: 8px 16px; font-size: 14px; }
  .btn-cta { padding: 12px 24px; }

  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 28px; margin-bottom: 15px; }
  .hero p { font-size: 16px; margin-bottom: 20px; }

  .privacy-trust-section { padding: 50px 20px; }
  .privacy-trust-section h2 { font-size: 24px; margin-bottom: 10px; }
  .privacy-trust-section .subtitle { font-size: 16px; margin-bottom: 30px; }

  .trust-grid { gap: 20px; margin-bottom: 40px; }
  .trust-card { padding: 20px; }
  .trust-card .icon { font-size: 32px; }
  .trust-card h3 { font-size: 16px; }
  .trust-card p { font-size: 13px; }

  .do-dont-grid { grid-template-columns: 1fr; gap: 20px; }
  .do-column, .dont-column { padding: 15px; }
  .do-column h4, .dont-column h4 { font-size: 14px; margin-bottom: 10px; }
  .do-column li, .dont-column li { font-size: 13px; margin-bottom: 6px; }

  .cta-section { padding: 30px 20px; }
  .cta-section p { font-size: 16px; margin-bottom: 15px; }
  .cta-section .btn { margin: 0 5px; font-size: 14px; }

  .container { padding: 0 15px; }
  footer { padding: 20px; }
  footer p { font-size: 13px; }
}

@media (max-width: 480px) {
  .logo { font-size: 18px; }
  .btn { padding: 8px 12px; font-size: 12px; }

  .hero h1 { font-size: 22px; }
  .hero p { font-size: 14px; }

  .privacy-trust-section h2 { font-size: 20px; }
  .privacy-trust-section .subtitle { font-size: 14px; }

  .trust-card { padding: 15px; }
  .trust-card .icon { font-size: 28px; }
  .trust-card h3 { font-size: 14px; }
  .trust-card p { font-size: 12px; }

  .cta-section { padding: 20px 15px; }
  .cta-section p { font-size: 14px; }
}
