* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ================= BACKGROUND ================= */
body {
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
  background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.6)),
    url('../images/background/sups.webp')
    center/cover no-repeat;
  background-size: cover;
  background-position: center;
  color: #eee;
  display: flex;
  flex-direction: column; 
  align-items: center;
  justify-content: center;
  padding: 20px;
}
/* ===== Css Logo ====== */
.logo {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
}

.logo img {
  width: 70px;      /* chỉnh nhỏ / to ở đây */
  height: auto;
}

/* ================= CONTAINER ================= */
.policy-wrapper {
  width: 100%;
  max-width: 720px;
  background: rgba(15, 15, 15, 0.26);
  backdrop-filter: blur(6px);
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.273);
}

/* ================= TITLE ================= */
.policy-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 700;
  color: #f5c76b;
  margin-bottom: 24px;
}

/* ================= ACCORDION ================= */
.accordion-item {
  background: rgba(255, 255, 255, 0.184);
  border-radius: 18px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid rgba(245, 199, 107, 0.589);
}

.accordion-header {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h3 {
  font-size: 16px;
  font-weight: 500;
  color: #f5c76b;
}

.accordion-header span {
  font-size: 22px;
  transition: transform .3s ease;
}

/* ================= CONTENT ================= */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.accordion-content p {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #ddd;
}

/* ACTIVE */
.accordion-item.active .accordion-content {
  max-height: 400px;
}

.accordion-item.active .accordion-header span {
  transform: rotate(45deg);
}

/* ================= FOOTER NOTE ================= */
.policy-note {
  margin-top: 20px;
  font-size: 13px;
  text-align: center;
  color: #aaa;
}


/* ================== FOOTER (GẦN TOURS HƠN) ================== */
footer{
  margin-top:50px; /* <<< giảm mạnh để gần tours */
  padding:30px 20px 25px;
}

.footer-accordion{
  max-width:900px;
  margin:auto;
}

/* Accordion item – hòa nền ảnh */
.acc-item{
  margin-bottom:18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(4px);
}

/* Header */
.acc-header{
  padding:18px 22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  color:#fff;
  font-size:16px;
}

.acc-header i{
  transition:.4s;
}

.acc-item.active .acc-header i{
  transform:rotate(180deg);
}

/* Content */
.acc-content{
  max-height:0;
  overflow:hidden;
  transition:max-height .5s ease;
  padding:0 22px;
  color:#eee;
  font-size:14px;
}

.acc-item.active .acc-content{
  padding:0 22px 22px;
  max-height:260px;
}

.policy-links a {
  color: inherit !important;
  text-decoration: none;
}

/* Social */
.social a{
  display:inline-flex;
  width:36px;
  height:36px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.3);
  align-items:center;
  justify-content:center;
  color:#fff;
  margin-right:10px;
}

/* Address */
.address{
  border:1px dashed rgba(255,255,255,.3);
  padding:14px;
  border-radius:14px;
}

/* Footer bottom */
.footer-bottom{
  text-align:center;
  margin-top:28px;
  font-size:13px;
  color:#eee;
}

/* ================= MOBILE ================= */
@media (max-width: 480px) {
  .policy-title {
    font-size: 28px;
  }
  /* ===== Css Logo ====== */
.logo {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
}

.logo img {
  width: 50px;      /* chỉnh nhỏ / to ở đây */
  height: auto;
}
}