@charset "UTF-8";
/* =========================================================
   PAGE: CHÍNH SÁCH BẢO MẬT
   File gợi ý: privacy-policy.scss.liquid
   ========================================================= */
/* ===== KHUNG CHUNG ===== */
.privacy-policy-page {
  background: #f5f7fb;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.7; }

.privacy-policy-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; }

/* ===== BREADCRUMB ===== */
.privacy-breadcrumb {
  background: #f7f8fa;
  border-top: 1px solid #eceff3;
  border-bottom: 1px solid #eceff3;
  padding: 12px 0;
  font-size: 14px;
  color: #6b7280; }

.privacy-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap; }

.privacy-breadcrumb a {
  color: #6b7280;
  text-decoration: none; }

.privacy-breadcrumb a:hover {
  color: #1d4ed8; }

/* ===== HERO ===== */
.privacy-hero {
  background: #f5f7fb;
  padding: 36px 0 26px; }

.privacy-hero-inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: center; }

.privacy-hero-icon {
  display: flex;
  justify-content: center; }

/* ===== ICON KHIÊN ===== */
.privacy-icon-circle {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(180deg, #eef4ff 0%, #dce9ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.45);
  animation: privacyCircleBreath 3s ease-in-out infinite; }

.privacy-icon-circle:before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  animation: privacyPulseRing 3s ease-in-out infinite;
  z-index: 0; }

.privacy-icon-circle svg {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  animation: privacyShieldGlow 3s ease-in-out infinite;
  transform-origin: center; }

@keyframes privacyCircleBreath {
  0%, 100% {
    transform: scale(1); }
  50% {
    transform: scale(1.03); } }

@keyframes privacyShieldGlow {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(37, 99, 235, 0)) drop-shadow(0 0 0 rgba(96, 165, 250, 0)); }
  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.4)) drop-shadow(0 0 18px rgba(96, 165, 250, 0.3)); } }

@keyframes privacyPulseRing {
  0%, 100% {
    opacity: 0.35;
    transform: scale(1); }
  50% {
    opacity: 0.8;
    transform: scale(1.12); } }

/* ===== NỘI DUNG HERO ===== */
.privacy-hero-content h1 {
  margin: 0 0 14px;
  font-size: 50px;
  line-height: 1.15;
  font-weight: 800;
  color: #0f172a;
  text-transform: none; }

.privacy-hero-content p {
  margin: 0 0 14px;
  max-width: 860px;
  font-size: 19px;
  color: #374151; }

.privacy-updated {
  font-size: 15px;
  color: #7c8aa5; }

/* ===== GRID ===== */
.privacy-section {
  padding: 8px 0 20px;
  background: transparent; }

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px; }

.privacy-card {
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04); }

.privacy-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px; }

.privacy-number {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1; }

.privacy-card h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
  color: #0f172a;
  text-transform: none; }

.privacy-card p {
  margin: 0 0 12px;
  color: #374151;
  font-size: 18px; }

.privacy-list {
  list-style: none;
  margin: 0;
  padding: 0; }

.privacy-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 30px;
  color: #1f2937;
  font-size: 18px; }

.privacy-list li:last-child {
  margin-bottom: 0; }

.privacy-list li:before {
  content: "✔";
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 16px;
  font-weight: 700;
  color: #2563eb; }

/* ===== LIÊN HỆ ===== */
.privacy-contact {
  padding: 6px 0 40px;
  background: transparent; }

.privacy-contact-box {
  background: #edf4ff;
  border: 1px solid #d7e5ff;
  border-radius: 14px;
  padding: 24px; }

.privacy-contact-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px; }

.privacy-contact-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: #60a5fa;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1; }

.privacy-contact-head h2 {
  margin: 0 0 4px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  text-transform: none; }

.privacy-contact-head p {
  margin: 0;
  font-size: 18px;
  color: #374151; }

.privacy-contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 30px; }

.privacy-contact-item {
  font-size: 18px;
  color: #1f2937; }

.privacy-thanks {
  margin-top: 18px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #1f2937; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .privacy-hero-inner {
    grid-template-columns: 1fr;
    text-align: center; }
  .privacy-hero-icon {
    justify-content: center; }
  .privacy-hero-content p {
    margin-left: auto;
    margin-right: auto; }
  .privacy-grid {
    grid-template-columns: 1fr; } }

@media (max-width: 767px) {
  .privacy-breadcrumb {
    padding: 10px 0;
    font-size: 13px; }
  .privacy-hero {
    padding: 28px 0 18px; }
  .privacy-icon-circle {
    width: 110px;
    height: 110px; }
  .privacy-icon-circle svg {
    width: 54px;
    height: 54px; }
  .privacy-hero-content h1 {
    font-size: 32px; }
  .privacy-hero-content p {
    font-size: 16px; }
  .privacy-updated {
    font-size: 14px; }
  .privacy-card {
    padding: 18px 16px;
    border-radius: 12px; }
  .privacy-card h2 {
    font-size: 22px; }
  .privacy-card p,
  .privacy-list li,
  .privacy-contact-head p,
  .privacy-contact-item {
    font-size: 15px; }
  .privacy-number {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 16px; }
  .privacy-contact-box {
    padding: 18px 16px; }
  .privacy-contact-head h2 {
    font-size: 24px; }
  .privacy-thanks {
    font-size: 16px;
    margin-top: 14px; } }
