* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1a2b36;
  line-height: 1.5;
  scroll-behavior: smooth;
  padding-top: var(--nav-height);
}

/* container — clean max-width */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== navigation — minimal, crisp, fully working links ===== */
:root {
  --nav-height: 72px
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 1rem;
  border-bottom: 1px solid #edf2f7;
  background: white;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: var(--nav-height);
  z-index: 1100;
  box-shadow: 0 6px 18px rgba(15, 30, 45, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%
}

.logo {
  display: flex;
  align-items: center
}

.logo-img {
  height: 56px;
  width: auto;
  display: block
}

@media (max-width:900px) {
  .logo-img {
    height: 42px
  }
}

@media (max-width:769px) {
  .logo-img {
    height: 44px
  }
}

.nav-links {
  display: flex;
  gap: 2.8rem;
  font-weight: 500;
  align-items: center;
}

/* mobile hamburger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 6px;
  /* no left margin so logo stays left */
}

.nav-toggle .hamburger {
  display: block;
  position: relative;
  width: 20px;
  height: 2px;
  background: #1a2b36;
  border-radius: 2px
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #1a2b36;
  border-radius: 2px;
  transition: transform .22s ease, opacity .2s
}

.nav-toggle .hamburger::before {
  top: -7px
}

.nav-toggle .hamburger::after {
  top: 7px
}

.navbar.open .nav-toggle .hamburger {
  background: transparent
}

.navbar.open .nav-toggle .hamburger::before {
  transform: translateY(7px) rotate(45deg)
}

.navbar.open .nav-toggle .hamburger::after {
  transform: translateY(-7px) rotate(-45deg)
}

.nav-links a {
  text-decoration: none;
  color: #1a2b36;
  font-size: 1rem;
  transition: color 0.2s ease;
  cursor: pointer;
  /* indicate clickable */
}

.nav-links a:hover {
  color: #2f5e7a;
}

.nav-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.nav-actions button {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #2f4655;
  transition: opacity 0.15s;
}

.nav-actions button:hover {
  opacity: 0.7;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid #1a2b36;
  color: #1a2b36;
  padding: 0.5rem 1.4rem;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.2s;
}

.btn-outline:hover {
  background: #1a2b36;
  color: white;
}

/* ===== hero ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 3.5rem 0 5rem 0;
}

.hero-content h1 {
  font-size: 3.3rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1a2b36;
}

.hero-content h1 i {
  color: #5b7f96;
  font-style: normal;
  font-weight: 300;
}

.hero-content p {
  font-size: 1.2rem;
  color: #3f5563;
  margin: 1.5rem 0 2rem;
  max-width: 90%;
}

/* Search panel: stacked pill layout, large input + CTA; becomes inline on wide screens */
.search-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 18px 40px -24px rgba(26, 43, 54, 0.22);
  border: 1px solid #eef3f7;
  max-width: 720px;
  width: 100%;
}

.search-panel input {
  width: 100%;
  border: 1px solid #e6eef6;
  padding: 18px 20px;
  font-size: 1.05rem;
  border-radius: 12px;
  outline: none;
  background: white;
  font-family: 'Inter', sans-serif;
  color: #22323b;
}

.search-panel input::placeholder {
  color: #8fa3b3;
}

.search-panel button {
  background: #15232b;
  border: none;
  color: white;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.search-panel button:hover {
  background: #2f5e7a;
  transform: translateY(-1px);
}

/* On wide screens keep input + button inline (classic layout) */
@media (min-width: 900px) {
  .search-panel {
    flex-direction: row;
    align-items: center;
    padding: 8px;
    border-radius: 999px;
    max-width: 860px;
  }

  .search-panel input {
    border-radius: 999px;
    padding: 14px 20px;
    flex: 1;
  }

  .search-panel button {
    width: auto;
    min-width: 180px;
    border-radius: 999px;
  }
}

@media (max-width: 900px) {

  .hero-content h1 {
    font-size: 38px;
  }

  .stat-item h3 {
    font-size: 25px !important;
  }
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.8rem;
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #1a2b36;
}

.stat-item p {
  font-size: 0.95rem;
  color: #536e7e;
  margin: 0;
}

.hero-image img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 35px 50px -30px #1a2b36;
  display: block;
}

/* ===== section headers ===== */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 2.5rem 0 2rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1a2b36;
}

.section-header a {
  text-decoration: none;
  font-weight: 500;
  color: #2f5e7a;
  border-bottom: 1.5px solid transparent;
  transition: 0.15s;
  padding-bottom: 0.2rem;
}

.section-header a:hover {
  border-bottom-color: #2f5e7a;
}

/* ===== property grid — simpler & professional ===== */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.property-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  border: 1px solid #f0f4f8;
}

.property-card:hover {
  box-shadow: 0 22px 35px -18px #1a2b36;
}

.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: white;
  padding: 0.3rem 1rem;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.8rem;
  border: 1px solid #e2e9f0;
  color: #1a2b36;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
}

.card-info {
  padding: 1.5rem 1.2rem 1.5rem 1.2rem;
}

.price {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a2b36;
  margin-bottom: 0.2rem;
}

.address {
  font-weight: 400;
  color: #526e7f;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.details {
  display: flex;
  gap: 1.5rem;
  margin: 0.8rem 0 1.2rem 0;
  color: #2b4b5e;
  font-size: 0.9rem;
}

.details span i {
  margin-right: 5px;
  width: 16px;
  color: #1a2b36;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eef3f8;
  padding-top: 1rem;
}

.agent {
  display: flex;
  align-items: center;
  gap: 8px;
}

.agent img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.agent span {
  font-weight: 500;
  font-size: 0.9rem;
}

.card-footer i {
  color: #1a2b36;
  opacity: 0.6;
  transition: 0.1s;
  cursor: pointer;
}

.card-footer i:hover {
  opacity: 1;
}

/* ===== services minimal ===== */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0 4rem 0;
}

.service-item {
  background: #f9fcff;
  padding: 2rem 1.8rem;
  border-radius: 24px;
  border: 1px solid #eaf1f8;
  transition: 0.2s;
}

.service-item:hover {
  background: #ffffff;
  border-color: #cbdae6;
}

.service-icon {
  background: white;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: #1a2b36;
  border: 1px solid #dde6ef;
}

.service-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-item p {
  color: #4a677a;
  font-weight: 400;
  font-size: 0.95rem;
}

/* ===== footer simple ===== */
.footer {
  background: #f7fafd;
  border-radius: 40px 40px 0 0;
  padding: 3rem 0 2rem 0;
  margin-top: 4rem;
  border-top: 1px solid #e0eaf2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-col p {
  color: #456277;
  margin: 1rem 0 1.5rem 0;
  max-width: 320px;
}

.footer .logo-img {
  height: 88px;
  max-width: 220px;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: #2f5e7a;
  text-decoration: none;
  display: inline-block;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-address {
  color: #4b6b7c;
  font-size: 0.95rem;
  line-height: 1.45;
  margin: 0;
}

/* Additional footer polish */
.footer-grid>div {
  padding: 0.25rem 0.5rem;
}

.social-icons {
  margin: 0.6rem 0 1rem 0;
}

.social-icons i {
  font-size: 1.6rem;
  color: #678897;
  margin-right: 1rem;
  opacity: 0.9;
}

.footer-col h4 {
  text-transform: none;
  font-size: 1.05rem;
  color: #163241;
  margin-bottom: 0.9rem;
}

.footer .connect-links a {
  display: block;
  font-weight: 600;
  color: #16404e;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.footer .copyright {
  border-top: 1px solid #e6f0f6;
  padding-top: 2rem;
  margin-top: 1.75rem;
  color: #5c7b8b;
}

.social-icons i {
  font-size: 1.4rem;
  margin-right: 1.2rem;
  color: #2f5e7a;
  opacity: 0.7;
  transition: 0.15s;
}

.social-icons i:hover {
  opacity: 1;
  cursor: pointer;
}

.footer-col h4 {
  font-weight: 600;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  color: #1e3443;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.7rem;
}

.footer-col a {
  text-decoration: none;
  color: #3f6279;
  font-weight: 400;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: #1a2b36;
}

.copyright {
  text-align: center;
  padding-top: 3rem;
  margin-top: 2rem;
  border-top: 1px solid #d9e5f0;
  color: #4f6f83;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */

/* --- Tablet (≤900px) --- */
@media (max-width: 900px) {
  :root {
    --nav-height: 64px;
  }

  body {
    padding-top: var(--nav-height);
  }

  .container {
    padding: 0 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem 0 3rem;
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .hero-content p {
    max-width: 100%;
    margin: 1.2rem auto 1.5rem;
  }

  .search-panel {
    margin: 0 auto;
  }

  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }

  .hero-image img {
    max-height: 340px;
    object-fit: cover;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .services {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* --- Phablet (≤769px) --- */
@media (max-width: 769px) {
  :root {
    --nav-height: 60px;
  }

  .container {
    padding: 0 0.9rem;
  }

  /* Navbar */
  .navbar {
    padding: 0.5rem 0.9rem;
  }

  .logo-img {
    height: 42px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .navbar.open .nav-links {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--nav-height);
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 8px 12px 12px;
    box-shadow: 0 12px 30px rgba(10, 20, 30, 0.10);
    z-index: 1099;
    border-top: 1px solid #edf2f7;
  }

  .nav-links a {
    padding: 11px 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 0 2.5rem;
    gap: 1.5rem;
  }

  .hero-content h1 {
    font-size: 2rem;
    letter-spacing: -0.02em;
  }

  .hero-content p {
    font-size: 1rem;
    max-width: 100%;
    margin: 1rem auto 1.4rem;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 1.8rem;
  }

  .stat-item h3 {
    font-size: 1.6rem !important;
  }

  .stat-item p {
    font-size: 0.85rem;
  }

  .hero-image img {
    max-height: 260px;
    border-radius: 20px;
  }

  /* Search */
  .search-panel {
    margin: 0 auto;
    max-width: 100%;
    flex-direction: column;
    border-radius: 16px;
    padding: 10px;
    gap: 8px;
  }

  .search-panel input {
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .search-panel button {
    width: 100%;
    border-radius: 10px;
    padding: 13px 16px;
  }

  /* Sections */
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .services {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-item {
    padding: 1.5rem;
  }

  /* Property grid */
  .property-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

/* --- Mobile (≤480px) --- */
@media (max-width: 480px) {
  :root {
    --nav-height: 58px;
  }

  .container {
    padding: 0 0.85rem;
  }

  /* Navbar */
  .navbar {
    height: auto;
    padding: 0.5rem 0.85rem;
  }

  .logo-img {
    height: 38px;
  }

  .nav-actions {
    gap: 0.6rem;
  }

  .btn-outline {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }

  /* Hero */
  .hero {
    padding: 1.5rem 0 2rem;
    gap: 1.2rem;
  }

  .hero-content h1 {
    font-size: 1.7rem;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 0.92rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-item h3 {
    font-size: 1.4rem !important;
  }

  .hero-image img {
    max-height: 220px;
    border-radius: 16px;
  }

  /* Search panel */
  .search-panel {
    border-radius: 14px;
    padding: 8px;
    gap: 6px;
  }

  .search-panel input {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .search-panel button {
    padding: 12px;
    font-size: 0.9rem;
  }

  /* Section headers */
  .section-header h2 {
    font-size: 1.3rem;
  }

  .section-header {
    margin: 1.5rem 0 1.2rem;
  }

  /* Cards */
  .property-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .card-image {
    height: 180px;
  }

  .price {
    font-size: 1.35rem;
  }

  /* Services */
  .services {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin: 1.5rem 0 2rem;
  }

  .service-item {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    border-radius: 12px;
    margin-bottom: 1rem;
  }

  .service-item h3 {
    font-size: 1.1rem;
  }

  /* Footer */
  nav.navbar .nav-links {
    padding: 8px;
  }

  .footer {
    padding: 1.75rem 0 1.2rem;
    border-radius: 24px 24px 0 0;
    margin-top: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    row-gap: 0;
  }

  .footer-grid>.footer-col:first-child {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid #ddeaf3;
    margin-bottom: 1rem;
  }

  .footer-grid>.footer-col:first-child .logo-img {
    height: 50px;
    margin-bottom: 0.5rem;
  }

  .footer-grid>.footer-col:first-child p {
    font-size: 0.83rem;
    max-width: 240px;
    margin: 0 auto 0.8rem;
  }

  .social-icons {
    display: inline-flex;
    align-items: center;
    background: white;
    border: 1px solid #d4e3ee;
    border-radius: 40px;
    padding: 0.3rem 0.9rem;
  }

  .social-icons i {
    font-size: 1.05rem;
    margin: 0 0.6rem;
    color: #2f5e7a;
    opacity: 0.75;
  }

  .footer-grid>.footer-col:not(:first-child) {
    padding: 0 0.4rem 0.9rem;
    text-align: center;
  }

  .footer-col h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #8aabb9;
    margin-bottom: 0.6rem;
  }

  .footer-col ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col li {
    margin-bottom: 0.4rem;
  }

  .footer-col a {
    font-size: 0.85rem;
    color: #2f4d5f;
  }

  .footer-grid>.footer-col:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid #ddeaf3;
    padding-top: 1rem;
    margin-top: 0.1rem;
    text-align: center;
  }

  .footer-grid>.footer-col:last-child ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }

  .footer-grid>.footer-col:last-child li {
    margin: 0;
  }

  .footer-grid>.footer-col:last-child a {
    font-size: 0.83rem;
    font-weight: 500;
    color: #1a2b36;
  }

  .copyright {
    font-size: 0.76rem;
    padding-top: 1.2rem;
    margin-top: 1rem;
  }
}

/* active menu style (optional) */
.nav-links a.active {
  color: #2f5e7a;
  font-weight: 600;
}


/* ===== Privacy Page Specific Styles ===== */
.pp-hero {
  background: linear-gradient(135deg, #f0f6fb 0%, #e8f1f8 100%);
  border-radius: 0 0 48px 48px;
  padding: 4rem 0 3.5rem;
  margin-bottom: 3rem;
  text-align: center;
  border-bottom: 1px solid #d8e8f2;
}

.pp-hero .pp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: #2f5e7a;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 1.1rem;
  border-radius: 40px;
  border: 1px solid #cddde9;
  margin-bottom: 1.2rem;
}

.pp-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a2b36;
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
}

.pp-hero p {
  color: #4a677a;
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.pp-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.pp-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: #5a7a90;
}

.pp-meta i {
  font-size: 0.85rem;
  color: #2f5e7a;
}

/* layout */
.pp-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 5rem;
}

/* sticky sidebar TOC */
.pp-toc {
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
  background: #f7fafd;
  border: 1px solid #dde9f2;
  border-radius: 20px;
  padding: 1.5rem 1.2rem;
}

.pp-toc h3 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7899ab;
  margin-bottom: 1rem;
}

.pp-toc a {
  display: block;
  text-decoration: none;
  color: #3f5f73;
  font-size: 0.88rem;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  line-height: 1.4;
}

.pp-toc a:hover {
  background: #e3edf6;
  color: #1a2b36;
}

/* content */
.pp-content section {
  margin-bottom: 2.8rem;
  scroll-margin-top: calc(var(--nav-height) + 1.5rem);
}

.pp-content h2 {
  font-size: 1.45rem;
  font-weight: 600;
  color: #1a2b36;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pp-content h2 .sec-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #1a2b36;
  color: white;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.pp-content p {
  color: #3d5a6b;
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.pp-content ul {
  margin: 0.5rem 0 1rem 0;
  padding-left: 0;
  list-style: none;
}

.pp-content ul li {
  color: #3d5a6b;
  font-size: 0.97rem;
  line-height: 1.7;
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
}

.pp-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2f5e7a;
}

.pp-divider {
  border: none;
  border-top: 1px solid #e0eaf3;
  margin: 0 0 2.8rem 0;
}

/* highlight box */
.pp-highlight {
  background: #eef5fb;
  border-left: 4px solid #2f5e7a;
  border-radius: 0 12px 12px 0;
  padding: 1.1rem 1.4rem;
  margin: 1rem 0 1.2rem;
  color: #2a4d60;
  font-size: 0.95rem;
  line-height: 1.7;
}

.pp-highlight strong {
  color: #1a2b36;
}

/* contact card */
.pp-contact-card {
  background: linear-gradient(135deg, #1a2b36 0%, #2f5e7a 100%);
  border-radius: 24px;
  padding: 2.2rem 2rem;
  color: white;
  margin-top: 1rem;
}

.pp-contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.pp-contact-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.93rem;
  margin-bottom: 1.2rem;
}

.pp-contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: #1a2b36;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.6rem 1.4rem;
  border-radius: 40px;
  transition: opacity 0.15s;
}

.pp-contact-card a:hover {
  opacity: 0.88;
}

/* Responsive — Privacy page */
@media (max-width: 900px) {
  .pp-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pp-toc {
    position: static;
  }

  .pp-hero h1 {
    font-size: 2rem;
  }

  .pp-hero p {
    font-size: 0.97rem;
  }
}

@media (max-width: 769px) {
  .pp-hero {
    padding: 2.5rem 0 2rem;
    border-radius: 0 0 24px 24px;
    margin-bottom: 1.5rem;
  }

  .pp-hero h1 {
    font-size: 1.65rem;
  }

  .pp-meta {
    gap: 0.8rem;
    margin-top: 1.2rem;
  }

  .pp-meta span {
    font-size: 0.8rem;
  }

  .pp-layout {
    padding-bottom: 2rem;
    gap: 1.2rem;
  }

  .pp-content h2 {
    font-size: 1.15rem;
  }

  .pp-content p,
  .pp-content ul li {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .pp-toc {
    padding: 1.1rem 1rem;
  }

  .pp-toc a {
    font-size: 0.83rem;
    padding: 0.35rem 0.6rem;
  }

  .pp-highlight {
    padding: 0.9rem 1.1rem;
    font-size: 0.9rem;
  }

  .pp-contact-card {
    padding: 1.5rem 1.2rem;
    border-radius: 18px;
  }

  .pp-contact-card h3 {
    font-size: 1.05rem;
  }

  .pp-contact-card p {
    font-size: 0.88rem;
  }

  .pp-contact-card a {
    font-size: 0.85rem;
    padding: 0.5rem 1.1rem;
  }
}

@media (max-width: 480px) {
  .pp-hero {
    padding: 2rem 0 1.5rem;
    border-radius: 0 0 18px 18px;
  }

  .pp-hero h1 {
    font-size: 1.4rem;
  }

  .pp-hero .pp-badge {
    font-size: 0.78rem;
    padding: 0.3rem 0.85rem;
  }

  .pp-layout {
    gap: 1rem;
    padding-bottom: 1.5rem;
  }

  .pp-content h2 {
    font-size: 1.05rem;
    gap: 0.5rem;
  }

  .pp-content h2 .sec-num {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
    border-radius: 6px;
  }

  .pp-content p,
  .pp-content ul li {
    font-size: 0.88rem;
  }

  .pp-divider {
    margin: 0 0 1.8rem 0;
  }

  .pp-toc {
    border-radius: 14px;
  }

  .pp-contact-card {
    padding: 1.2rem 1rem;
  }
}