:root {
  --bg: #ffffff;
  --sidebar-bg: #f8f9fa;
  --card: #ffffff;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --accent: #003d7a;
  --accent-light: #0066cc;
  --link: #0066cc;
  --border: #e5e7eb;
  --hover: #f3f4f6;
  --green: #10b981;
  --yellow: #fbbf24;
}

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

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

.container {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background-color: var(--sidebar-bg);
  border-right: 1px solid var(--border);
  padding: 1.5rem 0;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  padding: 0 1.5rem;
  margin-bottom: 2rem;
}

.logo-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(45deg, var(--accent), var(--accent-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.logo span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
}

.nav-section {
  margin-bottom: 2rem;
}

.nav-title {
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.nav-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.875rem;
  transition: background-color 0.2s;
  border-left: 3px solid transparent;
}

.nav-item:hover {
  background-color: var(--hover);
}

.nav-item.active {
  background-color: var(--hover);
  border-left-color: var(--accent);
  font-weight: 600;
}

.nav-item i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.main-content {
  flex: 1;
  margin-left: 280px;
  padding: 2rem 3rem;
  max-width: calc(100% - 280px);
}

.header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.effective-date {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
}

.content-section {
  margin-bottom: 3rem;
  scroll-margin-top: 2rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.section-content p {
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.7;
}

.section-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.section-content li {
  margin-bottom: 0.5rem;
  color: var(--text);
  line-height: 1.6;
}

.section-content li strong {
  color: var(--text);
}

.highlight-box {
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  border: 1px solid #38bdf8;
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  position: relative;
}

.highlight-box::before {
  content: "\f071";
  font-family: "boxicons";
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--accent);
  font-size: 1.2rem;
}

.highlight-box .content {
  padding-left: 2rem;
}

.highlight-box strong {
  color: var(--accent);
  font-weight: 600;
}

.warning-box {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fbbf24;
  border-left: 4px solid var(--yellow);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  position: relative;
}

.warning-box::before {
  content: "\f12a";
  font-family: "boxicons";
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--yellow);
  font-size: 1.2rem;
}

.warning-box .content {
  padding-left: 2rem;
}

.warning-box strong {
  color: var(--yellow);
  font-weight: 600;
}

.info-box {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #86efac;
  border-left: 4px solid var(--green);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  position: relative;
}

.info-box::before {
  content: "\f05a";
  font-family: "boxicons";
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--green);
  font-size: 1.2rem;
}

.info-box .content {
  padding-left: 2rem;
}

.info-box strong {
  color: var(--green);
  font-weight: 600;
}

.contact-section-alt {
  background: #f9fafb;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  margin: 3rem 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.contact-section-alt h3 {
  color: #1f2937;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-section-alt p {
  color: #4b5563;
  margin-bottom: 2rem;
  max-width: 600px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #111827;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}

.contact-card i {
  font-size: 1.8rem;
  color: var(--accent-light);
}

.card-text {
  display: flex;
  flex-direction: column;
}

.card-text strong {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.2rem;
}

.card-text span {
  color: #6b7280;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
    max-width: 100%;
    padding: 1rem;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
  }
}

.mobile-menu {
  display: none;
}

a {
  color: var(--link);
}

a:hover {
  text-decoration: underline;
}

.homepage_url {
  text-decoration: none;
}

.homepage_url:hover {
  text-decoration: none;
}

.footer {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer .container1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-links a i {
  font-size: 1rem;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-links a {
  color: var(--text-muted);
  font-size: 1.2rem;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-links a:hover {
  color: var(--accent);
  background: rgba(0, 102, 204, 0.1);
}

.copyright {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .footer {
    padding: 1.5rem 0;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }

  .footer-links {
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
  }

  .footer-links a {
    font-size: 0.85rem;
    gap: 0.3rem;
    min-width: auto;
  }

  .social-links {
    gap: 1.2rem;
  }

  .social-links a {
    font-size: 1.3rem;
    padding: 0.6rem;
  }
}
