@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  src: url("https://domain.com/fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("https://domain.com/fonts/Gilroy-Regular.woff2") format("woff2");
}
:root {
  --light-color: #ffffff;
  --dark-color: #000000;
  --primary-color: #123453;
  --accent-color: #bc8c62;
  --warning-color: red;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol,
li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--dark-color);
}

body.lock {
  overflow: hidden;
}

.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

a {
  transition: all 0.3s ease;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  font-weight: 700;
  border: 1px solid var(--dark-color);
  width: 100%;
  transition: all 0.3s ease;
}

.error-message {
  font-size: 0.9rem;
  color: red;
  font-weight: 500;
}

/* header */

.executive-top-bar {
  background: radial-gradient(circle at top, #0f172a, #1e293b);
  padding: clamp(15px, 3vw, 20px) 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.6s ease-in-out;
}

.prestige-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 5vw, 50px);
  animation: elegantReveal 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.elite-brand-portal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.elite-brand-portal:hover {
  transform: translateY(-3px);
  filter: brightness(1.2) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.15));
}

.symbol-graphic {
  height: clamp(45px, 6vw, 55px);
  width: auto;
  transition: transform 0.5s ease;
}

.elite-brand-portal:hover .symbol-graphic {
  transform: rotate(10deg) scale(1.1);
}

.brand-title {
  color: #f3f4f6;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.5s ease;
}

.elite-brand-portal:hover .brand-title {
  color: #d4af37;
}

.toggle-interface {
  display: none;
}

@media screen and (max-width: 1200px) {
  .toggle-interface {
    display: flex;
    align-items: center;
  }
}

.core-navigation-hub .navigation-elements {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 1200px) {
  .core-navigation-hub .navigation-elements {
    display: flex;
    align-items: center;
    gap: clamp(30px, 4vw, 40px);
  }
}

.link-node {
  position: relative;
  overflow: hidden;
}

.portal-anchor {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 19px);
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.portal-anchor::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.portal-anchor:hover {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.portal-anchor:hover::before {
  width: 300px;
  height: 300px;
}

.burger {
  width: 35px;
  height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.burger::before,
.burger::after,
.burger span {
  width: 100%;
  height: 5px;
  background: #e5e7eb;
  border-radius: 3px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger::before {
  content: "";
}

.burger::after {
  content: "";
}

.burger.is-open::before {
  transform: translateY(11.5px) rotate(135deg);
}

.burger.is-open::after {
  transform: translateY(-11.5px) rotate(-135deg);
}

.burger.is-open span {
  transform: scale(0);
  opacity: 0;
}

@media screen and (min-width: 1200px) {
  .burger {
    display: none;
  }
}

.elite-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: radial-gradient(circle at bottom, #1e293b, #0f172a);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
    opacity 0.6s ease;
  z-index: 98;
}

.elite-mobile-menu.is-open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.portable-nav-collection {
  list-style: none;
  margin: 0;
  padding: clamp(25px, 6vw, 35px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.portable-link-unit {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.elite-mobile-menu.is-open .portable-link-unit {
  opacity: 1;
  transform: scale(1);
}

.elite-mobile-menu.is-open .portable-link-unit:nth-child(1) {
  transition-delay: 0.15s;
}

.elite-mobile-menu.is-open .portable-link-unit:nth-child(2) {
  transition-delay: 0.25s;
}

.elite-mobile-menu.is-open .portable-link-unit:nth-child(3) {
  transition-delay: 0.35s;
}

.elite-mobile-menu.is-open .portable-link-unit:nth-child(4) {
  transition-delay: 0.45s;
}

.mobile-nav-connection {
  color: #e5e7eb;
  text-decoration: none;
  font-size: clamp(22px, 4.5vw, 26px);
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 12px;
  transition: background 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
}

.mobile-nav-connection:hover {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

@keyframes elegantReveal {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .prestige-nav-wrapper {
    gap: 15px;
  }
  .symbol-graphic {
    height: 45px;
  }
  .brand-title {
    font-size: 20px;
  }
  .mobile-nav-connection {
    font-size: 22px;
  }
}

/* --------------------hero---------------------- */

.executive-gateway {
  padding: clamp(70px, 10vh, 100px) 0;
  background: linear-gradient(135deg, #1a2a44 0%, #2e3b5e 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-top: 140px;
}

.executive-gateway::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"%3E%3Ccircle cx="100" cy="100" r="100" fill="rgba(255,255,255,0.05)"/%3E%3C/svg%3E')
    repeat;
  opacity: 0.3;
  z-index: -1;
}

.prime-content-structure {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
}

@media screen and (min-width: 992px) {
  .prime-content-structure {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: clamp(30px, 6vw, 60px);
  }
}

.dynamic-text-container {
  max-width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  animation: smoothAscent 1s ease-out forwards;
}

@media screen and (min-width: 992px) {
  .dynamic-text-container {
    max-width: 45%;
    text-align: left;
  }
}

.majestic-headline {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 700;
  color: #f5f5f5;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.majestic-headline::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #facc15;
  transition: width 0.4s ease, background 0.4s ease;
}

@media screen and (min-width: 992px) {
  .majestic-headline::after {
    left: 0;
    transform: none;
  }
}

.majestic-headline:hover::after {
  width: 100px;
  background: #eab308;
}

.articulate-statement {
  font-size: clamp(16px, 2vw, 18px);
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.articulate-statement:hover {
  color: #f5f5f5;
}

.vibrant-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 1.5vw, 12px) clamp(20px, 3vw, 30px);
  background: #facc15;
  color: #1a2a44;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: 200px;
}

.vibrant-action-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.vibrant-action-btn:hover {
  background: #eab308;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.vibrant-action-btn:hover::before {
  left: 100%;
}

.striking-visual-block {
  max-width: 100%;
  opacity: 0;
  transform: scale(0.95);
  animation: gentleZoom 1.2s ease-out 0.2s forwards;
}

@media screen and (min-width: 992px) {
  .striking-visual-block {
    max-width: 50%;
  }
}

.radiant-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.radiant-image:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transform: scale(1.03);
}

@keyframes smoothAscent {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gentleZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .majestic-headline {
    font-size: clamp(24px, 6vw, 32px);
  }
  .articulate-statement {
    font-size: clamp(14px, 2.5vw, 16px);
  }
  .vibrant-action-btn {
    padding: 10px 20px;
    font-size: 14px;
    max-width: 160px;
  }
  .majestic-headline::after {
    width: 50px;
  }
  .majestic-headline:hover::after {
    width: 80px;
  }
}

/* ----------------------stats-section---------------------------- */

.regal-insights-panel {
  padding: clamp(50px, 12vh, 120px) 0;

  position: relative;
  overflow: hidden;
  z-index: 1;
}

.regal-insights-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  opacity: 0.4;
  z-index: -1;
}

.noble-metrics-display {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(clamp(220px, 28vw, 280px), 1fr)
  );
  gap: clamp(25px, 4vw, 35px);
  justify-items: center;
  padding: clamp(30px, 5vw, 50px) 0;
}

.metric-unit {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: clamp(25px, 4vw, 35px);
  text-align: center;
  transition: transform 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: scale(0.9) rotate(-2deg);
  animation: metricPop 1.1s ease-out forwards;
  position: relative;
  width: 100%;
  max-width: 320px;
  backdrop-filter: blur(10px);
}

.metric-unit:nth-child(1) {
  animation-delay: 0.1s;
}

.metric-unit:nth-child(2) {
  animation-delay: 0.3s;
}

.metric-unit:nth-child(3) {
  animation-delay: 0.5s;
}

.metric-unit:nth-child(4) {
  animation-delay: 0.7s;
}

.metric-unit::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.metric-unit:hover {
  transform: scale(1.05) rotate(0deg);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.metric-unit:hover::after {
  left: 100%;
}

.metric-value {
  font-size: clamp(40px, 6.5vw, 52px);
  font-weight: 900;
  color: #1c1c1c;
  margin: 0 0 15px 0;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.metric-unit:hover .metric-value::before {
  width: 70px;
}

.metric-caption {
  font-size: clamp(15px, 2.2vw, 17px);
  color: #1c1c1c;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.metric-unit:hover .metric-caption {
  color: #facc15;
}

@keyframes metricPop {
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .noble-metrics-display {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .metric-unit {
    max-width: 100%;
    padding: 20px;
  }
  .metric-value {
    font-size: clamp(32px, 5.5vw, 40px);
  }
  .metric-caption {
    font-size: clamp(14px, 2vw, 16px);
  }
}

/* ----------------------stats-section---------------------------- */

/* ----------------------refined-info-section---------------------------- */

.stately-info-hub {
  padding: clamp(60px, 10vh, 110px) 0;
  background: linear-gradient(to bottom, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stately-info-hub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"%3E%3Cpath d="M100 0a100 100 0 1 0 0 200A100 100 0 0 0 100 0z" fill="rgba(255,255,255,0.05)"/%3E%3C/svg%3E')
    repeat;
  opacity: 0.3;
  z-index: -1;
}

.illustrious-content-frame {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: perspective(800px) rotateX(10deg);
  animation: frameReveal 1.4s ease-out forwards;
}

.grand-headline {
  font-size: clamp(32px, 4.8vw, 46px);
  font-weight: 800;
  color: #f5f5f5;
  margin-bottom: 25px;
  line-height: 1.25;
  position: relative;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.grand-headline::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #facc15, #eab308);
  transition: width 0.5s ease, background 0.5s ease;
}

.grand-headline:hover::after {
  width: 120px;
  background: linear-gradient(to right, #eab308, #facc15);
}

.refined-narrative-block {
  max-width: 850px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  animation: narrativeSlide 1.5s ease-out 0.2s forwards;
}

.polished-text {
  font-size: clamp(17px, 2.3vw, 19px);
  color: #d1d5db;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.4px;
  transition: color 0.4s ease;
}

.polished-text:hover {
  color: #f5f5f5;
}

.accentuated-brand {
  font-weight: 700;
  color: #facc15;
  position: relative;
  padding: 0 4px;
}

.accentuated-brand::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #eab308;
  transition: width 0.4s ease;
}

.accentuated-brand:hover::before {
  width: 100%;
}

@keyframes frameReveal {
  to {
    opacity: 1;
    transform: perspective(800px) rotateX(0deg);
  }
}

@keyframes narrativeSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .grand-headline {
    font-size: clamp(26px, 5.5vw, 34px);
  }
  .polished-text {
    font-size: clamp(15px, 2.8vw, 17px);
  }
  .grand-headline::after {
    width: 60px;
  }
  .grand-headline:hover::after {
    width: 90px;
  }
}

/* ----------------------refined-info-section---------------------------- */

/* ----------------------services---------------------------- */

.distinguished-service-showcase {
  padding: clamp(70px, 11vh, 120px) 0;
  background: linear-gradient(to bottom, #1a1a2e 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.distinguished-service-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
  opacity: 0.5;
  z-index: -1;
}

.majestic-section-header {
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 800;
  color: #e2e8f0;
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
  position: relative;
  opacity: 0;
  transform: scale(0.9);
  animation: headerZoom 1.2s ease-out forwards;
}

.majestic-section-header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #f59e0b, #d97706);
  transition: width 0.5s ease;
}

.majestic-section-header:hover::after {
  width: 120px;
}

.opulent-service-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(clamp(260px, 32vw, 320px), 1fr)
  );
  gap: clamp(20px, 3.5vw, 30px);
  justify-items: center;
}

.refined-service-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: clamp(20px, 3.5vw, 30px);
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
  opacity: 0;
  transform: translateY(30px) rotateX(10deg);
  animation: blockRise 1s ease-out forwards;
  position: relative;
  max-width: 360px;
  width: 100%;
  backdrop-filter: blur(8px);
}

.refined-service-block:nth-child(1) {
  animation-delay: 0.1s;
}
.refined-service-block:nth-child(2) {
  animation-delay: 0.3s;
}
.refined-service-block:nth-child(3) {
  animation-delay: 0.5s;
}

.refined-service-block:hover {
  transform: translateY(-10px) rotateX(0deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.refined-service-block:hover::before {
  left: 100%;
}

.icon-graphic {
  color: #f59e0b;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  transition: transform 0.6s ease, color 0.4s ease;
}

.refined-service-block:hover .icon-graphic {
  transform: scale(1.2) rotate(15deg);
  color: #facc15;
}

.service-caption {
  font-size: clamp(22px, 2.8vw, 26px);
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.service-narrative {
  font-size: clamp(15px, 2vw, 17px);
  color: #cbd5e1;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
  transition: color 0.4s ease;
}

.refined-service-block:hover .service-narrative {
  color: #f5f5f5;
}

@keyframes headerZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes blockRise {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .distinguished-service-showcase {
    padding: clamp(40px, 8vh, 70px) 0;
  }
  .majestic-section-header {
    font-size: clamp(28px, 5.5vw, 38px);
  }
  .opulent-service-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .refined-service-block {
    max-width: 100%;
    padding: 20px;
  }
  .service-caption {
    font-size: clamp(20px, 2.5vw, 24px);
  }
  .service-narrative {
    font-size: clamp(14px, 2vw, 16px);
  }
}

/* -----------------------help------------------------ */

.prestigious-offering-zone {
  padding: clamp(60px, 10vh, 110px) 0;
  background: linear-gradient(to bottom, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.grand-offer-title {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 800;
  color: #1e293b;
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
  opacity: 0;
  transform: translateY(-25px);
  animation: titleAscend 1s ease-out forwards;
  letter-spacing: 0.4px;
}

.elite-offer-array {
  display: grid;
  grid-template-columns: repeat(2, minmax(clamp(280px, 30vw, 340px), 1fr));
  gap: clamp(20px, 3vw, 30px);
  justify-items: center;
}

@media (max-width: 992px) {
  .elite-offer-array {
    grid-template-columns: 1fr;
  }
}

.prime-offer-card {
  background: #ffffff;
  border-radius: 10px;
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: scale(0.97);
  animation: cardPop 0.8s ease-out forwards;
  max-width: 600px;
  width: 100%;
}

.prime-offer-card:nth-child(1) {
  animation-delay: 0.1s;
}
.prime-offer-card:nth-child(2) {
  animation-delay: 0.3s;
}
.prime-offer-card:nth-child(3) {
  animation-delay: 0.5s;
}
.prime-offer-card:nth-child(4) {
  animation-delay: 0.7s;
}

.prime-offer-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-headline {
  font-size: clamp(22px, 2.6vw, 25px);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  letter-spacing: 0.2px;
}

.card-narrative {
  font-size: clamp(15px, 2vw, 17px);
  color: #475569;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.prime-offer-card:hover .card-narrative {
  color: #1e293b;
}

.vibrant-action-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(10px, 1.5vw, 12px) clamp(18px, 2.5vw, 22px);
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.vibrant-action-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.card-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.vibrant-action-link:hover .card-icon {
  transform: translateX(5px);
}

@keyframes titleAscend {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .prestigious-offering-zone {
    padding: clamp(40px, 8vh, 70px) 0;
  }
  .grand-offer-title {
    font-size: clamp(26px, 5vw, 34px);
  }
  .prime-offer-card {
    max-width: 100%;
    padding: 20px;
  }
  .card-headline {
    font-size: clamp(20px, 2.5vw, 23px);
  }
  .card-narrative {
    font-size: clamp(14px, 2vw, 16px);
  }
  .vibrant-action-link {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* ----------------------noble-commitment-section---------------------------- */

.exalted-integrity-zone {
  padding: clamp(60px, 10vh, 100px) 0;
  background: linear-gradient(to bottom, #1f2a44 0%, #2e3b5e 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.exalted-integrity-zone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"%3E%3Ccircle cx="50" cy="50" r="50" fill="rgba(255,255,255,0.05)"/%3E%3C/svg%3E')
    repeat;
  opacity: 0.2;
  z-index: -1;
}

.stately-integrity-panel {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: panelRise 1.2s ease-out forwards;
}

.regal-title {
  font-size: clamp(34px, 4.7vw, 46px);
  font-weight: 800;
  color: #e5e7eb;
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: color 0.3s ease;
}

.regal-title:hover {
  color: #facc15;
}

.dignified-content-block {
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.95);
  animation: contentScale 1.3s ease-out 0.2s forwards;
}

.articulate-text {
  font-size: clamp(17px, 2.2vw, 19px);
  color: #d1d5db;
  line-height: 1.75;
  font-weight: 400;
  margin: 0;
  transition: color 0.3s ease;
}

.articulate-text:hover {
  color: #f5f5f5;
}

.prime-accent {
  font-weight: 700;
  color: #facc15;
  padding: 0 5px;
  transition: background 0.3s ease;
  border-radius: 4px;
}

.prime-accent:hover {
  background: rgba(250, 204, 21, 0.1);
}

@keyframes panelRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contentScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .exalted-integrity-zone {
    padding: clamp(40px, 8vh, 70px) 0;
  }
  .regal-title {
    font-size: clamp(26px, 5.5vw, 34px);
  }
  .articulate-text {
    font-size: clamp(15px, 2.8vw, 17px);
  }
}

/* ----------------------noble-commitment-section---------------------------- */

/* ----------------------join, form---------------------------- */

.distinguished-connect-area {
  padding: clamp(70px, 11vh, 120px) 0;
  background: linear-gradient(to bottom, #f1f5f9 0%, #e5e9ef 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.opulent-contact-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(25px, 4vw, 40px);
  align-items: center;
}

@media (min-width: 992px) {
  .opulent-contact-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.regal-info-block {
  max-width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: infoFade 1s ease-out forwards;
}

@media (min-width: 992px) {
  .regal-info-block {
    max-width: 48%;
  }
}

.stately-main-title {
  font-size: clamp(32px, 4.5vw, 42px);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 18px;
  text-align: center;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

@media (min-width: 992px) {
  .stately-main-title {
    text-align: left;
  }
}

.stately-main-title:hover {
  color: #3b82f6;
}

.polished-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: center;
  transition: color 0.3s ease;
}

@media (min-width: 992px) {
  .polished-subtitle {
    text-align: left;
  }
}

.polished-subtitle:hover {
  color: #1e293b;
}

.noble-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-entry {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  transform: translateX(-15px);
  animation: entrySlide 0.9s ease-out forwards;
}

.contact-entry:nth-child(1) {
  animation-delay: 0.1s;
}
.contact-entry:nth-child(2) {
  animation-delay: 0.3s;
}
.contact-entry:nth-child(3) {
  animation-delay: 0.5s;
}

.entry-icon {
  width: 22px;
  height: 22px;
  color: #3b82f6;
  margin-top: 2px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-entry:hover .entry-icon {
  transform: scale(1.15);
  color: #1e40af;
}

.entry-title {
  font-size: clamp(17px, 1.9vw, 19px);
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.entry-detail {
  font-size: clamp(14px, 1.7vw, 16px);
  color: #475569;
  margin: 4px 0 0 0;
  transition: color 0.3s ease;
}

.contact-entry:hover .entry-detail {
  color: #1e293b;
}

.entry-detail a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.entry-detail a:hover {
  color: #1e40af;
}

.compliance-notice {
  margin-top: 25px;
  opacity: 0;
  transform: translateY(15px);
  animation: entrySlide 0.9s ease-out 0.7s forwards;
}

.elegant-form-panel {
  max-width: 100%;
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: scale(0.98);
  animation: formScale 1s ease-out 0.2s forwards;
}

@media (min-width: 992px) {
  .elegant-form-panel {
    max-width: 48%;
  }
}

.join__form {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vw, 22px);
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-caption {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
  color: #1e293b;
}

.form-input-field,
.form-textarea-field {
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: clamp(14px, 1.5vw, 16px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input-field:focus,
.form-textarea-field:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
  outline: none;
}

.form-textarea-field {
  resize: vertical;
  min-height: 100px;
}

.form-disclaimer {
  font-size: clamp(12px, 1.3vw, 14px);
  color: #475569;
  text-align: center;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.form-disclaimer:hover {
  color: #1e293b;
}

.disclaimer-link {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.disclaimer-link:hover {
  color: #1e40af;
}

.form-submit-btn {
  max-width: 180px;
  margin: 0 auto;
  padding: 10px 0;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

@keyframes infoFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes entrySlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes formScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .distinguished-connect-area {
    padding: clamp(40px, 8vh, 70px) 0;
  }
  .stately-main-title {
    font-size: clamp(24px, 5vw, 32px);
  }
  .polished-subtitle {
    font-size: clamp(14px, 2vw, 16px);
  }
  .entry-title {
    font-size: clamp(16px, 1.8vw, 18px);
  }
  .entry-detail {
    font-size: clamp(13px, 1.6vw, 15px);
  }
  .elegant-form-panel {
    padding: 18px;
  }
  .form-caption {
    font-size: 14px;
  }
  .form-input-field,
  .form-textarea-field {
    font-size: 14px;
  }
  .form-disclaimer {
    font-size: 12px;
  }
  .form-submit-btn {
    font-size: 14px;
    max-width: 160px;
  }
}

/* --------------------------footer--------------------------- */

.illustrious-footer-panel {
  padding: clamp(50px, 9vh, 90px) 0;
  background: linear-gradient(to bottom, #f1f5f9 0%, #e5e9ef 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stately-disclaimer-area {
  max-width: 950px;
  margin: 0 auto clamp(25px, 4vw, 35px) auto;
  opacity: 0;
  transform: translateY(15px);
  animation: disclaimerSlide 1.1s ease-out forwards;
}

.articulate-disclaimer {
  font-size: clamp(14px, 1.7vw, 16px);
  color: #475569;
  line-height: 1.65;
  margin-bottom: 18px;
  transition: color 0.3s ease;
}

.articulate-disclaimer:hover {
  color: #1e293b;
}

.articulate-disclaimer strong {
  color: #1e293b;
  font-weight: 600;
}

.articulate-disclaimer a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.articulate-disclaimer a:hover {
  color: #1e40af;
}

.regal-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(15px, 2.5vw, 25px);
  opacity: 0;
  transform: scale(0.98);
  animation: contentScale 1s ease-out 0.2s forwards;
}

@media (max-width: 768px) {
  .regal-footer-content {
    flex-direction: column;
    gap: 18px;
  }
}

.noble-copyright-notice {
  font-size: clamp(13px, 1.5vw, 15px);
  color: #475569;
  font-weight: 400;
  transition: color 0.3s ease;
}

.noble-copyright-notice:hover {
  color: #1e293b;
}

.prime-nav-collection {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 1.8vw, 20px);
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-unit {
  opacity: 0;
  transform: translateX(-10px);
  animation: navSlide 0.7s ease-out forwards;
}

.footer-nav-unit:nth-child(1) {
  animation-delay: 0.3s;
}
.footer-nav-unit:nth-child(2) {
  animation-delay: 0.4s;
}
.footer-nav-unit:nth-child(3) {
  animation-delay: 0.5s;
}
.footer-nav-unit:nth-child(4) {
  animation-delay: 0.6s;
}

.distinctive-nav-anchor {
  font-size: clamp(13px, 1.5vw, 15px);
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.distinctive-nav-anchor:hover {
  color: #1e40af;
  transform: translateX(3px);
}

@keyframes disclaimerSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contentScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes navSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .illustrious-footer-panel {
    padding: clamp(30px, 7vh, 50px) 0;
  }
  .articulate-disclaimer {
    font-size: clamp(12px, 1.4vw, 14px);
  }
  .noble-copyright-notice {
    font-size: clamp(12px, 1.4vw, 14px);
    text-align: center;
  }
  .prime-nav-collection {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .distinctive-nav-anchor {
    font-size: clamp(12px, 1.4vw, 14px);
  }
}

/* -------------------------cookie------------------------------- */

.elegant-cookie-notice {
  position: fixed;
  bottom: clamp(20px, 3vw, 30px);
  right: clamp(20px, 3vw, 30px);
  max-width: clamp(300px, 35vw, 400px);
  width: 90%;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 31, 63, 0.2);
  z-index: 1000;
  opacity: 0;
  transform: translateY(60px);
  animation: cookieSlideUp 0.8s ease-out forwards;
  transition: box-shadow 0.4s ease;
}

.elegant-cookie-notice:hover {
  box-shadow: 0 12px 35px rgba(0, 31, 63, 0.3);
}

.refined-cookie-content {
  padding: clamp(20px, 3vw, 25px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.prestige-cookie-heading {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 700;
  color: #001f3f;
  margin-bottom: 15px;
  position: relative;
}

.prestige-cookie-heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, #ffd700, #d4af37);
  margin: 10px auto 0;
  transition: width 0.4s ease;
}

.prestige-cookie-heading:hover::after {
  width: 80px;
}

.sophisticated-cookie-text {
  font-size: clamp(13px, 1.6vw, 14px);
  color: #333333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.noble-cookie-actions {
  display: flex;
  gap: clamp(15px, 2vw, 20px);
}

.luxury-accept-button {
  padding: clamp(10px, 1.5vw, 12px) clamp(20px, 2.5vw, 25px);
  background: linear-gradient(135deg, #001f3f 0%, #004080 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.luxury-accept-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 31, 63, 0.3);
}

.luxury-accept-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(0);
}

.luxury-accept-button:hover::before {
  opacity: 1;
  transform: scale(1);
}

.luxury-reject-button {
  padding: clamp(10px, 1.5vw, 12px) clamp(20px, 2.5vw, 25px);
  background: #e8edf3;
  color: #001f3f;
  border: none;
  border-radius: 50px;
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.luxury-reject-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 31, 63, 0.2);
  background: #d0d4d8;
}

.luxury-reject-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(0);
}

.luxury-reject-button:hover::before {
  opacity: 1;
  transform: scale(1);
}

@keyframes cookieSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .elegant-cookie-notice {
    max-width: 90%;
    bottom: 15px;
    right: 15px;
    padding: 15px;
  }
  .prestige-cookie-heading {
    font-size: clamp(16px, 2vw, 18px);
  }
  .sophisticated-cookie-text {
    font-size: clamp(12px, 1.5vw, 13px);
  }
  .luxury-accept-button,
  .luxury-reject-button {
    padding: 8px 20px;
    font-size: clamp(12px, 1.4vw, 13px);
  }
}

/* -------------------------pages--------------------------- */

.main-content {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  min-height: 100vh;
  padding: clamp(50px, 10vh, 80px) 0;
}

.policy-section {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 8vh, 60px) 0;
}

.policy-heading {
  font-size: clamp(28px, 5vw, 36px);
  margin-bottom: 32px;
  text-align: center;
  color: #2a2a4e;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 0.8s ease-out forwards;
}

.policy-content {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.8;
  color: #4a4a4a;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.policy-content p {
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.policy-content p:hover {
  color: #2a2a4e;
}

.policy-content h2 {
  font-size: clamp(20px, 3vw, 24px);
  margin-bottom: 16px;
  color: #2a2a4e;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.policy-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #4da8ff;
  transition: width 0.3s ease;
}

.policy-content h2:hover::after {
  width: 100px;
}

.policy-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.policy-content li {
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.policy-content li:hover {
  transform: translateX(5px);
}

.policy-content a {
  color: #4da8ff;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.policy-content a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #4da8ff;
  transition: width 0.3s ease;
}

.policy-content a:hover {
  color: #2a2a4e;
}

.policy-content a:hover::after {
  width: 100%;
}

.policy-action-btn {
  max-width: 180px;
  width: 100%;
  margin: 32px auto 0;
  padding: 12px 0;
  background: linear-gradient(90deg, #2a2a4e 0%, #4da8ff 100%);
  color: #ffffff;
  text-align: center;
  display: block;
  border-radius: 5px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.policy-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(77, 168, 255, 0.4);
}

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .policy-heading {
    font-size: clamp(24px, 6vw, 32px);
  }
  .policy-content {
    font-size: 14px;
  }
  .policy-content h2 {
    font-size: 20px;
  }
  .policy-action-btn {
    padding: 10px 0;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .policy-section {
    padding: 30px 0;
  }
  .policy-heading {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .policy-content {
    font-size: 13px;
  }
  .policy-content h2 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .policy-content ul {
    margin-left: 15px;
  }
  .policy-content li {
    margin-bottom: 8px;
  }
  .policy-action-btn {
    max-width: 160px;
    margin-top: 20px;
    padding: 8px 0;
  }
}
