* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  color: #fff;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
}

@media (min-width: 768px) {
  .header {
    padding: 24px 48px;
  }
}

/* Logo */
.logo-wrapper {
  display: block;
  width: 180px;
}

.logo {
  width: 100%;
  display: none;
}

/* Default (top of page) */
.logo-white {
  display: block;
}

/* Scrolled state */
.header.scrolled {
  background-color: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.header.scrolled .logo-white {
  display: none;
}

.header.scrolled .logo-dark {
  display: block;
}


/* Privacy Hero */
.privacy-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 65vh;
  overflow: hidden;
}

/* Background image */
.privacy-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/business-bay-1.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Overlay */
.privacy-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 2;
}

/* Content */
.privacy-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

@media (max-width: 768px) {
  .privacy-hero-content {
    padding: 0 12px;
  }
}

/* Title */
.privacy-title {
  font-family: "Comme", sans-serif;
  color: white;
  font-weight: 300;
  letter-spacing: 0.08em;
  font-size: clamp(36px, 10vw, 200px);
  line-height: 1;
}

/* Privacy Details */
.privacy-details {
  background-color: #ffffff;
}

.privacy-container {
  padding: 80px 80px;
  color: #0a3a4a;
  font-family: "Comme", sans-serif;
}

@media (max-width: 768px) {
  .privacy-container {
    padding: 40px 24px;
  }
}

/* Titles */
.privacy-page-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  margin-bottom: 8px;
}

.privacy-updated {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 48px;
}

.privacy-section-title {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  margin: 56px 0 16px;
}

.privacy-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin: 32px 0 8px;
}

/* Text */
.privacy-text {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 16px;
}

.privacy-text a {
  color: #0a3a4a;
  text-decoration: underline;
}

/* Lists */
.privacy-list {
  padding-left: 24px;
  margin-bottom: 32px;
}

.privacy-list li {
  list-style: disc;
  margin-bottom: 8px;
  color: #4b5563;
}

/* Strong */
.privacy-strong {
  font-weight: 600;
  color: #1f2933;
}

/* Spacing helpers */
.mb-lg { margin-bottom: 40px; }
.mb-xl { margin-bottom: 56px; }
.mb-xxl { margin-bottom: 72px; }


.footer {
  width: 100%;
  background-color: #f3fafc;
  margin-top: 80px;
  font-family: Arial, sans-serif;
}

/* Top */
.footer-top {
  padding: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

/* Logo */
.footer-logo img {
  width: 180px;
}

@media (min-width: 768px) {
  .footer-logo img {
    width: 250px;
  }

  .footer-top {
  padding: 80px;
}
}

/* Columns */
.footer-col h3 {
  color: #023f52;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: #023f52;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 8px;
}

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

/* Bottom */
.footer-bottom {
  background-color: #023f52;
  color: white;
  text-align: center;
  padding: 24px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .footer-bottom {
    font-size: 16px;
  }
}

.term-title{
    font-family: "Comme", sans-serif;
  color: white;
  font-weight: 300;
  font-size: clamp(70px, 10vw, 160px);
  line-height: 1;
}
