/* Basic Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Rubik", sans-serif;
  color: #333;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Layout container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */

/* Header */
.site-header {
  background: #fff;
  color: #fff;
  padding: 14px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.3px;
}

/* Navigation */
.main-nav {
  margin-left: auto;
  display: flex;
  gap: 18px;
  align-items: center;
}

.main-nav a {
  color: #f35626;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 8px;
}

.main-nav a:hover,
.main-nav a.active {
  text-decoration: underline;
}

/* Content */
.content { padding: 40px 0; }

.policy {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

/* Titles */
.policy h1 {
  font-size: 1.9rem;
  margin-bottom: 8px;
  color: #1d1d1d;
}

.policy-summary {
  color: #555;
  margin-bottom: 20px;
}

/* Sections */
.policy section { margin-bottom: 20px; }

.policy h2 {
  color: #f35626;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.policy p {
  color: #444;
  margin-bottom: 10px;
  font-size: 1rem;
}

.policy ul {
  margin-left: 0px;
  margin-bottom: 10px;
}

.policy ul li {
  margin-bottom: 8px;
  padding: 8px 12px;
  background: #fff7f4;
  border-left: 4px solid #f35626;
  border-radius: 6px;
  list-style: none;
}

/* Links */
.policy a {
  color: #f35626;
  text-decoration: none;
}
.policy a:hover { text-decoration: underline; }

/* Policy footer */
.policy-footer {
  border-top: 1px solid #eee;
  margin-top: 20px;
  padding: 40px 20px;
  color: #666;
  font-size: 0.95rem;
}

/* Site footer */
.site-footer {
  background: #0d1b2a;
  color: #ddd;
  padding: 40px 20px;
  margin-top: 30px;
}

.site-footer p {
  margin-bottom: 6px;
  text-align: center;
}

.foot-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.foot-links a {
  color: #f35626;
  text-decoration: none;
  font-weight: 500;
}

.foot-links a:hover { color: #fff; }

/* Responsive */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .main-nav { margin-left: 0; flex-wrap: wrap; justify-content: center; width: 100%; }
  .policy { padding: 20px; }
  .policy h1 { font-size: 1.6rem; }
}
