/* Fonts are inherited from styles.css */
:root {
  --primary-color: #093869;
  --accent-color: #3C80FF;
  --text-color: #4D4D4D;
  --light-grey: #F8F9FA;
  --border-color: #EAEAEA;
  --glass-bg: rgba(255, 255, 255, 0.8);
}

body {
  font-family: "Nohemi", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: #fff;
}

/* Hero Section */
.policy-hero {
  background: linear-gradient(135deg, #093869 0%, #052D57 100%);
  padding: 120px 0 80px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.policy-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(60, 128, 255, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.policy-hero .container {
  position: relative;
  z-index: 1;
}

.policy-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.policy-hero p {
  font-size: 1.1rem;
  opacity: 0.8;
}

/* Main Layout */
.policy-main {
  padding-bottom: 100px;
}

/* Sidebar Navigation */
.policy-sidebar {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.policy-sidebar .nav-link {
  color: var(--text-color);
  font-weight: 500;
  padding: 12px 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.policy-sidebar .nav-link:hover {
  color: var(--accent-color);
  background: rgba(60, 128, 255, 0.05);
  padding-left: 20px;
}

.policy-sidebar .nav-link.active {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(60, 128, 255, 0.3);
}

.policy-content section {
  margin-bottom: 40px;
  scroll-margin-top: 150px;
}

.policy-content h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.policy-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.policy-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.policy-content p {
  margin-bottom: 1.2rem;
  color: var(--text-color);
  font-size: 1.05rem;
  text-align: justify;
  line-height: 1.7;
}

.policy-content ul {
  padding-left: 0;
  margin-bottom: 2rem;
}

.policy-content li {
  margin-bottom: 0.8rem;
  position: relative;
  list-style: none;
  padding-left: 30px;
  color: var(--text-color);
  font-size: 1.05rem;
}

/* Bullet list style */
.policy-content ul:not(.checked-list) li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

/* Checked list style */
.policy-content ul.checked-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.1rem;
  color: var(--accent-color);
}

.policy-content a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1.5px solid transparent;
  transition: all 0.3s;
}

.policy-content a:hover {
  border-bottom-color: var(--accent-color);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .policy-hero h1 {
    font-size: 2.5rem;
  }
  .policy-content h2 {
    font-size: 1.75rem;
  }
}

/*# sourceMappingURL=styles7.css.map */
