@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap");
/* ========================================
   CSS Variables - Color Palette
   ======================================== */

/* Base Colors (constant across themes) */
:root {
  /* Brand Colors */
  --brand-blue: #15e5e8;
  --brand-blue-teal: #1847b5;
  --brand-grey-blue: #273132;

  /* Additional Colors */
  --color-orange: #ff9933;
  --color-dark-orange: #cd741a;
  --color-green: #1ab20c;
  --color-dark-green: #108106;
  --color-red: #ea3737;
  --font-family: "IBM Plex Sans", sans-serif;
}

/* Dark Theme (Default) */
:root,
[data-theme="dark"] {
  /* Background Colors */
  --bg-primary: #141418;
  --bg-secondary: #181821;
  --bg-tertiary: #2a2a33;
  --bg-blur: rgba(26, 26, 34, 0.88);

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #81818c;
  --text-tertiary: #ecf3f4;
  --dark-variant-one: #fff;
  --copay-btn-text: #15e5e8;

  --dark-variant-two: #151517;
  --dark-variant-three: #fafafa;
  --dark-variant-four: #14151a;
  --header-bg: #1a1a22e0;
  --body-bg-primary: #14141b;
  --dropdown-p: #868692;
  --copay-btn-bg: #273132;
  --footer-color: #81818c;
  /* Border & Divider */
  --border-color: #81818c;
  --border-color-dark-var1: #85878d;

  /* Accent Colors */
  --color-blue: var(--brand-blue);
  --color-blue-teal: var(--brand-blue-teal);
}

/* Light Theme */
[data-theme="light"] {
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #ecf3f4;
  --bg-tertiary: #f8f9fa;
  --bg-blur: rgba(245, 245, 245, 0.88);
  --dark-variant-one: #262626;
  --dark-variant-two: #fff;
  --dark-variant-three: #858692;
  --dark-variant-four: #fff;
  --header-bg: #ffffff;
  --body-bg-primary: #f5f5f5;
  --body-bg-secondary: #ffffff;
  --dropdown-p: #868692;
  --copay-btn-bg: #15e5e8;
  /* Text Colors */
  --text-primary: #141418;
  --text-secondary: #81818c;
  --text-tertiary: #2a2a33;
  --copay-btn-text: #ffffff;
  --footer-color: #81818c;

  /* Border & Divider */
  --border-color: #d1d1d6;
  --border-color-dark-var1: #848484;

  /* Accent Colors */
  --color-blue: var(--brand-blue);
  --color-blue-teal: var(--brand-blue-teal);
}

/* ========================================
   CSS Reset
   ======================================== */
.lp-single-course,
.lp-single-course__header,
.lp-single-course table,
.learnpress table th,
.learnpress table td,
.lp-single-course .lp-single-course-main__right__inner {
  color: var(--text-primary) !important ;
  background-color: var(--body-bg-primary) !important;
  background: var(--body-bg-primary) !important;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}
h3,
h4,
h5,
h6 {
  font-weight: 700;

  line-height: 1.2;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 18px;
}
ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

button,
input[type="reset"] {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

input[type="reset"]:focus,
button:focus {
  outline: none;
  box-shadow: none;
}

button:hover,
input[type="reset"]:hover {
  outline: none;
  box-shadow: none;
}

body {
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--text-primary) !important;
  background-color: var(--body-bg-primary) !important;
}

.form-control {
  transition: all 0.3s ease;
}

.form-control:focus {
  box-shadow: none !important;
  border-color: var(--color-blue) !important;
}

/* ========================================
   Logo Theme Switching
   ======================================== */
/* Dark theme - show light logo */
[data-theme="dark"] .for-dark {
  display: flex !important;
}

[data-theme="dark"] .for-light {
  display: none !important;
}

/* Light theme - show dark logo */
[data-theme="light"] .for-dark {
  display: none !important;
}

[data-theme="light"] .for-light {
  display: flex !important;
}

/* ========================================
   Theme Toggle Button
   ======================================== */
[title="Toggle Theme"] {
  position: relative;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

[title="Toggle Theme"]:hover {
  background: var(--bg-secondary);
  border-color: var(--color-blue);
}

[title="Toggle Theme"] svg {
  vertical-align: middle;
  transition: transform 0.3s ease;
}

[title="Toggle Theme"]:hover svg {
  transform: rotate(15deg);
}

/* Dark theme - show sun icon */
[data-theme="dark"] [title="Toggle Theme"] svg:first-child {
  display: none;
}

[data-theme="dark"] [title="Toggle Theme"] svg:last-child {
  display: inline-block;
}

/* Light theme - show moon icon */
[data-theme="light"] [title="Toggle Theme"] svg:first-child {
  display: inline-block;
}

[data-theme="light"] [title="Toggle Theme"] svg:last-child {
  display: none;
}

/* ========================================
   Navbar Styling
   ======================================== */

/* Sticky Header Styles */
header {
  background-color: var(--header-bg);
  overflow: visible;
}

header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  /* transform: translateZ(0);  */
  /* backface-visibility: hidden;  */
}

[data-theme="dark"] header.sticky {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(21, 229, 232, 0.1);
}

[data-theme="light"] header.sticky {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-custom {
  overflow: visible !important;
}

.navbar-custom .container-fluid {
  overflow: visible !important;
}

.navbar {
  overflow: visible !important;
}

.navbar .row,
.navbar .container,
.navbar .container-fluid {
  overflow: visible !important;
}

.navbar-custom .nav-link {
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.navbar-custom .navbar-brand img {
  transition: opacity 0.3s ease;
}

.navbar-toggler {
  border-color: var(--border-color);
  color: var(--text-primary);
  border: 0;
}

/* Navbar toggler icon for dark theme */
[data-theme="dark"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar toggler icon for light theme */
[data-theme="light"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(20, 20, 24, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.logo {
  min-width: 160px;
  width: 160px;
  display: flex;
}

.inner-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  overflow: visible;
}
.nav-item {
  position: relative;
  overflow: visible;
}

.nav-item.has-dropdown {
  position: relative;
}

/* Extend hover area to cover the gap */
.nav-item.has-dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -8px;
  background: transparent;
  z-index: 1;
}
.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: var(--text-primary) transparent transparent transparent;
  z-index: 2;
}

.nav-item .nav-link {
  padding: 12px;
  font-weight: 500;
  font-size: 16px;
  padding-inline: 0 !important;
  position: relative;
  z-index: 2;
}
.nav-item.has-dropdown .nav-link {
  padding-right: 5px !important;
}
.footer-brand {
  max-width: 188px;
}
.footer-brand .logo {
  margin-inline: auto !important;
  display: inline-block !important;
  max-width: 172px;
  min-width: 172px;
  width: 172px;
}
.footer-brand .logo img {
  width: 100%;
  object-fit: contain;
}

.footer-menu-heading {
  font-size: 18px;
  color: var(--text-primary);
  white-space: nowrap;
  font-weight: 600;
}

.footer-brand-social-download {
  min-width: 188px;
}

.footer-menu ul li a {
  font-size: 14px;
  text-decoration: none;
  color: var(--footer-color);
  line-height: 1.3;
}

.footer-menu ul {
  display: flex;
  flex-direction: column;
}

.footer-download-btn {
  font-size: 14px;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
  padding: 8px 12px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.btn.footer-download-btn:hover {
  background-color: none !important;
}

.footer-bottom {
  color: var(--text-primary);
}
.nav-item.active .nav-link {
  color: var(--color-blue) !important;
}
/* ========================================
   Responsive Utilities
   ======================================== */

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Header spacer for smooth sticky transition - NO JERKING */
.header-spacer {
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar-nav {
  align-items: center;
}
.seperate-item {
  margin-left: 10px;
}
.seperate-item .co-pay-btn {
  background-color: var(--copay-btn-bg);
  color: var(--copay-btn-text);
  padding: 4px 8px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}
.search-box {
  max-width: 224px;
  height: 32px;
  position: relative;
}
.search-box i {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  color: var(--footer-color);
}
.search-box input {
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0 10px;
  padding-left: 32px;
  background-color: var(--bg-tertiary);
  transition: all 0.3s ease;
  color: var(--text-primary);
}
.search-box input:focus {
  box-shadow: none !important;
  outline: none !important;
}
.search-box input::placeholder {
  color: var(--dropdown-p);
  font-size: 12px;
}

/* Loading spinner animation */
.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Search dropdown styles */
.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background-color: var(--header-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  display: none;
  max-height: 400px;
  overflow-y: auto;
}

.search-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ========================================
   Mobile Search Modal
   ======================================== */
.mobile-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 11000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2rem;
}

.mobile-search-modal.active {
  display: flex;
}

.mobile-search-content {
  width: 90%;
  max-width: 500px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: slideDown 0.3s ease;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.mobile-search-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.mobile-search-close {
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-search-body {
  padding: 1.5rem;
  flex: 1;
  /* overflow-y: auto; */
}

.mobile-search-body .search-box {
  max-width: 100%;
  width: 100%;
  height: 48px;
}

.mobile-search-body .search-box input {
  height: 100%;
  font-size: 16px;
}

.mobile-search-body .search-dropdown {
  position: static;
  margin-top: 1rem;
  max-height: 60vh;
  overflow-y: auto;
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.mobile-search-body .search-dropdown ul {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.mobile-search-body .search-dropdown-item {
  border-bottom: 1px solid var(--border-color);
}

.mobile-search-body .search-dropdown-item:last-child {
  border-bottom: none;
}

.mobile-search-body .search-dropdown-item:hover {
  background-color: var(--bg-tertiary);
}

/* Hide mobile search modal on desktop */
@media (min-width: 768px) {
  .mobile-search-modal {
    display: none !important;
  }
}

/* ========================================
   Mobile Menu Overlay
   ======================================== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 10000;
  transition: right 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
}

.mobile-menu-overlay.active {
  right: 0;
}

/* Overlay backdrop */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  padding-bottom: 0;
  /* border-bottom: 1px solid var(--border-color); */
}

.mobile-menu-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--dropdown-p);
}

.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Content */
.mobile-menu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* padding: 1rem 0; */
}

/* Mobile Navigation List */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-link-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-link {
  flex: 1;
  display: block;
  padding: 10px 16px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.mobile-submenu-toggle {
  background: transparent;
  border: none;
  padding: 0.5rem;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.mobile-submenu-toggle.active {
  transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: var(--bg-secondary);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-submenu.active {
  max-height: 500px;
}

.mobile-submenu li {
  border-top: 1px solid var(--border-color);
}

.mobile-submenu li a {
  display: block;
  padding: 0.75rem 1.5rem 0.75rem 3rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
}

.mobile-submenu li a:hover {
  color: var(--text-primary);
  background-color: var(--bg-tertiary);
}
.download-btn,
.language-btn {
  cursor: pointer;
}

/* Mobile Utility Items */
.mobile-utility-items {
  padding: 1rem 0;
  /* margin-top: 1rem; */
}
[data-theme="light"] .download-btn img {
  filter: brightness(0);
}
[data-theme="light"] .language-btn img {
  filter: brightness(0);
}

.mobile-utility-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 10px 16px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 16px;
  background: transparent;
  border: none;
  width: 100%;
  cursor: pointer;
  text-align: left;
}

.mobile-utility-item i {
  font-size: 20px;
}

.mobile-utility-item:hover {
  background-color: var(--bg-secondary);
}

/* Mobile Action Buttons */
.mobile-action-buttons {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.mobile-btn {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
}

.mobile-btn-signup {
  background-color: var(--dark-variant-one);
  color: var(--dark-variant-four);
}

.mobile-btn-login {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.mobile-btn-signup:hover {
  opacity: 0.9;
}

.mobile-btn-login:hover {
  background-color: var(--bg-secondary);
}
[data-theme="light"] .right-action-btn img {
  filter: brightness(0);
}
/* Hide mobile menu on desktop */
@media (min-width: 992px) {
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* Desktop navbar always visible on large screens */
@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
  }
}

/* Hide desktop navbar on mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none !important;
  }
}
.mobile-action-buttons a {
  padding: 10.5px 23.5px;
}
.mobile-utility-item {
  justify-content: start;
}
.navbar-toggler {
  margin-left: 0 !important;
}
/* Social icons responsive sizing */

/* Improve text readability */
p,
li,
a {
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Remove all focus outlines on click */
*:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Remove focus outlines from all elements */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
div:focus,
li:focus,
span:focus {
  outline: none !important;
}

/* Focus visible (keyboard navigation only - Tab key) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
}

/* Remove focus from mobile menu items */
.mobile-nav-link:focus,
.mobile-nav-link-wrapper:focus,
.mobile-submenu-toggle:focus,
.mobile-utility-item:focus,
.mobile-btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Container max-width adjustments */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.blog-card {
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid transparent;
}

.blog-card:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  border-color: var(--color-blue);
}

.blog-card {
  background-color: var();
}

.navbar-collapse {
  overflow: visible !important;
}

.navbar-collapse.show,
.navbar-collapse.collapsing {
  overflow: visible !important;
}

/* Search icon styling */
.search-icon {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .search-icon {
  color: #000 !important;
}

.blog-filter-item {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.blog-filter-item:hover {
  background-color: var(--dark-variant-one);
  border-color: var(--color-blue);
  color: var(--dark-variant-two);
}

.blog-filter-item.active {
  background-color: var(--dark-variant-one);
  border-color: var(--color-blue);
  color: var(--dark-variant-two);
}

.blog-filter-content {
  width: 100%;
  overflow-x: auto;
  padding: 10px;
}

::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-blue);
}

.blog-list-p p {
  color: var(--dark-variant-three);
}

.blog-list-p li:last-child {
  margin-bottom: 0;
}
.blog-list-p li {
  margin-bottom: 10px;
}

.share-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--dark-variant-one);
  border-color: var(--color-blue);
  color: var(--dark-variant-two);
  width: max-content;
}

.share-button:hover {
  background-color: var(--dark-variant-one);
  border-color: var(--color-blue);
  color: var(--dark-variant-two);
}

/* Share Modal Styles */
.share-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.share-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-modal-content {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
  overflow: hidden;
}

.share-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
}

.share-modal-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.share-modal-close {
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--text-primary);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.share-modal-close:hover {
  background-color: var(--bg-tertiary);
  color: var(--color-blue);
}

.share-modal-body {
  padding: 24px;
}

.share-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.share-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: var(--bg-primary);
}

.share-icon-item i {
  font-size: 32px;
  transition: transform 0.3s ease;
}

.share-icon-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.share-icon-item.facebook {
  color: #1877f2;
}

.share-icon-item.twitter {
  color: #1da1f2;
}

.share-icon-item.instagram {
  color: #e4405f;
}

.share-icon-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: currentColor;
}

.share-icon-item:hover i {
  transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

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

/* Responsive */
@media (max-width: 576px) {
  .share-icons-grid {
    grid-template-columns: 1fr;
  }

  .share-modal-content {
    width: 95%;
  }

  .share-modal-header {
    padding: 16px 20px;
  }

  .share-modal-title {
    font-size: 18px;
  }

  .share-modal-body {
    padding: 20px;
  }
}

/* Blog Sidebar Sticky */
.inner-blog {
  overflow: visible;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  align-self: flex-start;
}

/* Custom scrollbar for sidebar */
.blog-sidebar::-webkit-scrollbar {
  width: 4px;
}

.blog-sidebar::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-radius: 4px;
}

.blog-sidebar::-webkit-scrollbar-thumb {
  background: var(--color-blue);
  border-radius: 4px;
}

.blog-sidebar::-webkit-scrollbar-thumb:hover {
  background: var(--brand-blue-teal);
}

.blog-card-image {
  max-height: 160px;
}

.hot-topic-list-ul li {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.hot-topic-list-ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.hot-topic-list-ul li a {
  text-decoration: none;
  color: var(--text-primary);
}

.hot-topic-list-ul li a:hover {
  color: var(--color-blue);
}

/* Disable sticky on mobile */
@media (max-width: 767.98px) {
  .blog-sidebar {
    position: static;
    max-height: none;
    overflow-y: visible;
  }
}

.search-btn {
  background-color: var(--color-blue);
  color: var(--text-primary);
  border-radius: 6px;
  padding: 8px 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 100%;
  width: 100%;
}

.search-btn:hover {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}

.annoucement-list {
  border-left: 1px solid var(--border-color);
  padding-left: 1rem;
}

.annoucement-sidebar ul li {
  padding: 8px 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  border-radius: 6px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: 10px;
}

.annoucement-sidebar ul li {
  position: relative;
  overflow: hidden;
}

.annoucement-sidebar ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--color-blue);
  opacity: 0.12;
  z-index: 0;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 6px;
  pointer-events: none;
}

.annoucement-sidebar ul li:hover::before {
  width: 100%;
}

.annoucement-sidebar ul li,
.annoucement-sidebar ul li * {
  position: relative;
  z-index: 1;
}

.annoucement-sidebar ul li:last-child {
  margin-bottom: 0;
}

.annoucement-sidebar ul li:hover {
  color: var(--color-blue);
}

.annoucement-sidebar ul li.active {
  color: var(--color-blue);
}

.annoucement-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 10px;
}

.annoucement-list p {
  font-size: 16px;
  line-height: 1.5;
}

.annoucement-list li {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 35px;
}

.annoucement-list li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.annoucement-list .annoucement-date {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 10px;
}

/* ========================================
   Pagination Styling
   ======================================== */
.pagination-prev a,
.pagination-next a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pagination-prev a:hover,
.pagination-next a:hover {
  background-color: var(--dark-variant-one);
  border-color: var(--color-blue);
  color: var(--dark-variant-two);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(21, 229, 232, 0.15);
}

.pagination-prev a i,
.pagination-next a i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.pagination-prev a:hover i {
  transform: translateX(-3px);
}

.pagination-next a:hover i {
  transform: translateX(3px);
}

/* Page numbers */
.pagination-page {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-page span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pagination-page span:hover {
  background-color: var(--bg-tertiary);
  border-color: var(--color-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(21, 229, 232, 0.15);
}

/* Active page state */
.pagination-page span:first-child {
  background-color: var(--dark-variant-one);
  border-color: var(--color-blue);
  color: var(--dark-variant-two);
  box-shadow: 0 2px 8px rgba(21, 229, 232, 0.2);
}

/* Ellipsis styling */
.pagination-page span:nth-last-child(2) {
  border: none;
  background-color: transparent;
  cursor: default;
  box-shadow: none;
  pointer-events: none;
}

.pagination-page span:nth-last-child(2):hover {
  transform: none;
  box-shadow: none;
  background-color: transparent;
}

/* Responsive pagination */
@media (max-width: 767.98px) {
  .pagination-prev a,
  .pagination-next a {
    padding: 8px 16px;
    font-size: 13px;
  }

  .pagination-page {
    gap: 6px;
  }

  .pagination-page span {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }
}

@media (max-width: 575.98px) {
  .d-flex.justify-content-between {
    gap: 12px;
  }

  .pagination-prev a,
  .pagination-next a {
    padding: 6px 12px;
    font-size: 12px;
  }

  .pagination-prev a span,
  .pagination-next a span {
    display: none;
  }

  .pagination-page {
    gap: 4px;
  }

  .pagination-page span {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    font-size: 12px;
  }

  /* Hide some page numbers on mobile */
  .pagination-page span:nth-child(4),
  .pagination-page span:nth-child(5) {
    display: none;
  }
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background-color: var(--header-bg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 16px;
  z-index: 9999;
  min-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  white-space: nowrap;

  /* Transition properties */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* Create invisible bridge to prevent dropdown from disappearing */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

/* Show dropdown with smooth animation */
.nav-item.has-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  padding: 8px;
  padding-right: 16px;
  position: relative;
  border-radius: 6px;
  z-index: 9999;
  transition: background-color 0.3s ease;
}
.nav-dropdown-item:hover {
  background-color: var(--bg-tertiary);
}
.nav-dropdown-item::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--text-secondary);
  border-right: 2px solid var(--text-secondary);
  background: none;
  border-radius: 0;
  /* Make it a right angle "arrow" (like ⎾) */
  /* Rotate to point to the right */
  transform: translateY(-50%) rotate(45deg);
}
.nav-dropdown-item a {
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}
.nav-dropdown-item a:hover {
  color: var(--color-blue);
}
.drop-down-item-inner {
  display: flex;
  gap: 8px;
  align-items: center;
}
.drop-down-item-inner-img {
  width: 20px;
  height: 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.drop-down-item-inner-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Keep original colors in light mode */
[data-theme="light"] .drop-down-item-inner-img img {
  filter: brightness(0) saturate(100%) invert(92%) sepia(75%) saturate(7329%)
    hue-rotate(120deg) brightness(91%) contrast(100%);
}
.drop-down-item-inner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drop-down-item-inner-text h5 {
  font-size: 14px;
  font-weight: 500;
}
.drop-down-item-inner-text p {
  font-size: 12px;
  font-weight: 400;
  color: var(--dropdown-p);
}
.login-signup ul {
  display: flex;
}
.login-signup ul li a {
  padding: 7px 16px;
}
.login-signup .login-btn {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}
.login-signup .signup-btn {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-variant-four);

  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: var(--dark-variant-one);
}
.right-navbar,
.right-navbar-tablet {
  display: flex;
  align-items: center;
}

.right-action-btn {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: 24px;
}

.right-action-btn span {
  max-width: 16px;
  min-width: 16px;
}

/* Right Navbar for Tablet (768px - 991px) */
.right-navbar-tablet .search-box {
  max-width: 200px;
  min-width: 160px;
}

.right-navbar-tablet .login-signup {
  margin-left: 12px;
}

/* Right Navbar for Mobile (<768px) */
.right-navbar-mobile {
  gap: 12px;
  align-items: center;
  margin-left: auto;
}

.mobile-signup-btn {
  padding: 8px 16px;
  background-color: var(--dark-variant-one);
  color: var(--dark-variant-four);
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.mobile-signup-btn:hover {
  opacity: 0.9;
}

.mobile-search-icon {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-search-icon:hover {
  background-color: var(--bg-secondary);
  border-color: var(--color-blue);
}

.mobile-search-icon i {
  font-size: 16px;
}

.search-dropdown {
  font-size: 13px;
  min-width: 180px;
}
.trading-pairs {
  font-weight: 500;
}
.last-price {
  font-size: 11px;
  white-space: nowrap;
}
.trading-pairs,
.trading-pairs-name,
.last-price,
.price-change-percentage {
  padding: 4px 0;
}
.last-price,
.price-change-percentage {
  text-align: right;
}
.search-dropdown-item {
  padding: 0;
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.2s ease;
}

.search-dropdown-item:last-child {
  border-bottom: none;
}

.search-dropdown-item:hover {
  background-color: var(--bg-tertiary);
}

.search-dropdown-item a {
  display: block;
  padding: 6px 3px;
  text-decoration: none;
  color: var(--text-primary);
}

.search-dropdown-item .trading-pairs {
  font-weight: 600;
  margin-bottom: 4px;
}

.search-dropdown-item .trading-pairs-name {
  font-size: 11px;
  color: var(--text-secondary);
}

.search-dropdown-item .last-price {
  font-weight: 500;
  margin-bottom: 4px;
}

.search-dropdown-item .price-change-percentage {
  font-size: 11px;
  font-weight: 500;
}

/* ========================================
   Keycloak Loading Spinner
   ======================================== */
.kc-loading-spinner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  font-size: 18px;
  animation: kc-spin 1s linear infinite;
  margin: 0 8px;
}

.kc-loading-spinner i {
  display: block;
}

@keyframes kc-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ========================================
   Full Page Loader for Keycloak Session Check
   ======================================== */

/* Hide body content during Keycloak initialization to prevent blinking */
body.keycloak-loading > *:not(#keycloak-page-loader) {
  visibility: hidden;
  opacity: 0;
}

body.keycloak-loading header,
body.keycloak-loading main,
body.keycloak-loading footer {
  display: none !important;
}

.keycloak-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-primary);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}

.keycloak-page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.keycloak-loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.keycloak-loader-spinner {
  position: relative;
  width: 60px;
  height: 60px;
}

.keycloak-loader-spinner .spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  border-top-color: var(--color-blue);
  border-radius: 50%;
  animation: keycloak-spin-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.keycloak-loader-spinner .spinner-ring:nth-child(1) {
  animation-delay: -0.45s;
}

.keycloak-loader-spinner .spinner-ring:nth-child(2) {
  animation-delay: -0.3s;
  border-top-color: var(--color-blue);
  opacity: 0.7;
}

.keycloak-loader-spinner .spinner-ring:nth-child(3) {
  animation-delay: -0.15s;
  border-top-color: var(--color-blue);
  opacity: 0.5;
}

@keyframes keycloak-spin-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.keycloak-loader-text {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  animation: keycloak-pulse 1.5s ease-in-out infinite;
}

@keyframes keycloak-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* Smooth transition for auth buttons */
.login-btn,
.mobile-btn-login,
.signup-btn,
.mobile-signup-btn,
.mobile-btn-signup {
  transition: opacity 0.3s ease, display 0.3s ease;
}

/* User Profile Icon Styles */
.user-profile-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  padding: 4px;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  max-width: 36px;
  padding: 9px !important;
}

.user-profile-icon i {
  display: block;
  line-height: 1;
}

/* Mobile user profile icon adjustments */
.mobile-btn-login.user-profile-icon {
  font-size: 22px;
}

/* Bootstrap tooltip customization for user icon */
.tooltip {
  font-size: 13px;
}

.tooltip-inner {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* 17.11.25  */

/* Hero Section */
.hero-section {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-gradient-bg {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(21, 229, 232, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: float 20s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 30px) scale(1.1);
  }
}

.badge-tag {
  display: inline-block;
  padding: 8px 20px;
  background: var(--bg-tertiary);
  color: var(--brand-blue);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(21, 229, 232, 0.3);
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 540px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 120px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-image-placeholder {
  position: relative;
  animation: fadeInUp 1s ease-out;
}

/* Image Placeholders */
.image-placeholder-box {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-tertiary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border-color);
  position: relative;
  overflow: hidden;
}

.image-placeholder-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(21, 229, 232, 0.1),
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.placeholder-text {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 500;
  z-index: 1;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.mission-card {
  background: var(--bg-primary);
  padding: 40px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(21, 229, 232, 0.1);
  border-color: var(--brand-blue);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 100%
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #fff;
}

.mission-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.mission-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Story Section */
.story-section {
  padding: 80px 0;
}

.story-image-placeholder {
  position: relative;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--bg-tertiary);
  color: var(--brand-blue);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(21, 229, 232, 0.3);
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section-description {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.story-highlights {
  margin-top: 32px;
}

.highlight-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}

.highlight-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.highlight-item p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.value-card {
  background: var(--bg-primary);
  padding: 40px 30px;
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(21, 229, 232, 0.1);
  border-color: var(--brand-blue);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--brand-blue);
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: linear-gradient(
    135deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 100%
  );
  color: #fff;
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.value-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.team-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(21, 229, 232, 0.1);
  border-color: var(--brand-blue);
}

.team-image-placeholder .image-placeholder-box {
  aspect-ratio: 1;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid var(--border-color);
}

.team-info {
  padding: 24px;
  text-align: center;
}

.team-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.team-role {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.team-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-link {
  width: 36px;
  height: 36px;
  background: var(--bg-tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.social-link:hover {
  background: var(--brand-blue);
  color: #fff;
  border-color: var(--brand-blue);
  transform: scale(1.1);
}

/* Timeline Section */
.timeline-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  width: 50%;
  padding: 0 40px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--brand-blue);
  border: 4px solid var(--bg-secondary);
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(odd)::before {
  right: -10px;
}

.timeline-item:nth-child(even)::before {
  left: -10px;
}

.timeline-content {
  background: var(--bg-primary);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(21, 229, 232, 0.15);
  border-color: var(--brand-blue);
}

.timeline-year {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(
    135deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 100%
  );
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.timeline-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.timeline-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
}

.cta-card {
  background: linear-gradient(
    135deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 100%
  );
  padding: 60px 50px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-title {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  position: relative;
  z-index: 1;
}

.btn-cta {
  display: inline-block;
  padding: 16px 40px;
  background: #fff;
  color: var(--brand-blue-teal);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title {
    font-size: 42px;
  }

  .section-title {
    font-size: 36px;
  }

  .cta-title {
    font-size: 32px;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 80px;
    padding-right: 0;
    left: 0 !important;
    text-align: left !important;
  }

  .timeline-item::before {
    left: 20px !important;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 80px 0 60px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .mission-card,
  .value-card {
    padding: 30px 24px;
  }

  .cta-card {
    padding: 40px 30px;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-description {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
  }

  .theme-toggle {
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }
}

/* Animation Classes */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

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

.pp-hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--pp-bg-secondary) 0%,
    var(--pp-bg-primary) 100%
  );
  padding: 120px 0 80px;
  overflow: hidden;
}

.pp-hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(21, 229, 232, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pp-float 8s ease-in-out infinite;
}

.pp-hero-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(24, 71, 181, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pp-float 10s ease-in-out infinite reverse;
}

@keyframes pp-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.pp-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--pp-body-bg-primary) 100%
  );
  pointer-events: none;
}

.pp-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.pp-hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(21, 229, 232, 0.1);
  border: 1px solid rgba(21, 229, 232, 0.3);
  border-radius: 50px;
  color: var(--pp-brand-blue);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pp-hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  background-clip: text;
  line-height: 1.2;
  color: var(--dark-variant-one);
}

.pp-hero-subtitle {
  font-size: 20px;
  color: var(--pp-text-secondary);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.pp-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  color: var(--pp-text-secondary);
}

.pp-meta-divider {
  color: var(--pp-border-color);
}

.pp-content-section {
  padding: 80px 0 100px;
  position: relative;
}

.pp-sidebar-nav {
  position: sticky;
  top: 100px;
  background: var(--pp-bg-secondary);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(129, 129, 140, 0.1);
}

.pp-sidebar-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--pp-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.pp-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pp-nav-link {
  padding: 12px 16px;
  color: var(--pp-text-secondary);
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pp-nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--pp-brand-blue);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.pp-nav-link:hover,
.pp-nav-link.pp-active {
  color: var(--pp-text-primary);
  background: rgba(21, 229, 232, 0.08);
}

.pp-nav-link.pp-active::before {
  transform: scaleY(1);
}

.pp-content-wrapper {
  background: var(--pp-bg-secondary);
  border-radius: 20px;
  padding: 60px;
  border: 1px solid rgba(129, 129, 140, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pp-content-block {
  margin-bottom: 80px;
  position: relative;
  scroll-margin-top: 100px;
}

.pp-content-block:last-child {
  margin-bottom: 0;
}

.pp-section-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--pp-brand-blue);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.pp-section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--pp-text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.pp-section-text {
  font-size: 16px;
  color: var(--pp-text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.pp-subsection {
  margin-top: 32px;
}

.pp-subsection-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--pp-text-primary);
  margin-bottom: 16px;
}

.pp-custom-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.pp-custom-list li {
  padding: 12px 0 12px 36px;
  color: var(--pp-text-secondary);
  position: relative;
  font-size: 15px;
  line-height: 1.6;
}

.pp-custom-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--pp-brand-blue);
  font-weight: 700;
  font-size: 18px;
}

.pp-info-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(21, 229, 232, 0.05);
  border: 1px solid rgba(21, 229, 232, 0.2);
  border-radius: 12px;
  margin-top: 32px;
}

.pp-info-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.pp-info-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--pp-text-primary);
  margin-bottom: 8px;
}

.pp-info-content p {
  font-size: 14px;
  color: var(--pp-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.pp-warning-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 153, 51, 0.05);
  border: 1px solid rgba(255, 153, 51, 0.2);
  border-radius: 12px;
  margin-top: 32px;
}

.pp-warning-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.pp-warning-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--pp-text-primary);
  margin-bottom: 8px;
}

.pp-warning-content p {
  font-size: 14px;
  color: var(--pp-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.pp-image-placeholder {
  width: 100%;
  height: 300px;
  background: var(--pp-bg-tertiary);
  border: 2px dashed rgba(129, 129, 140, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  transition: all 0.3s ease;
}

.pp-image-placeholder:hover {
  border-color: var(--pp-brand-blue);
  background: rgba(21, 229, 232, 0.03);
}

.pp-placeholder-content {
  text-align: center;
}

.pp-placeholder-icon {
  font-size: 48px;
  margin-bottom: 12px;
  opacity: 0.5;
}

.pp-placeholder-content p {
  color: var(--pp-text-secondary);
  font-size: 14px;
}

.pp-feature-card {
  background: var(--pp-bg-tertiary);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(129, 129, 140, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.pp-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(21, 229, 232, 0.1);
  border-color: rgba(21, 229, 232, 0.3);
}

.pp-feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.pp-feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--pp-text-primary);
  margin-bottom: 12px;
}

.pp-feature-text {
  font-size: 14px;
  color: var(--pp-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.pp-accordion-section {
  margin-top: 32px;
}

.pp-accordion-item {
  background: var(--pp-bg-tertiary);
  border: 1px solid rgba(129, 129, 140, 0.1);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pp-accordion-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pp-accordion-header:hover {
  background: rgba(21, 229, 232, 0.05);
}

.pp-accordion-header h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--pp-text-primary);
  margin: 0;
}

.pp-accordion-icon {
  font-size: 24px;
  color: var(--pp-brand-blue);
  transition: transform 0.3s ease;
}

.pp-accordion-item.pp-active .pp-accordion-icon {
  transform: rotate(45deg);
}

.pp-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.pp-accordion-item.pp-active .pp-accordion-content {
  max-height: 500px;
  padding: 0 24px 20px;
}

.pp-accordion-content p {
  font-size: 15px;
  color: var(--pp-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.pp-security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.pp-security-item {
  background: var(--pp-bg-tertiary);
  padding: 28px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(129, 129, 140, 0.1);
  transition: all 0.3s ease;
}

.pp-security-item:hover {
  transform: translateY(-5px);
  border-color: var(--pp-brand-blue);
  box-shadow: 0 10px 30px rgba(21, 229, 232, 0.1);
}

.pp-security-badge {
  font-size: 36px;
  margin-bottom: 16px;
}

.pp-security-item h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--pp-text-primary);
  margin-bottom: 8px;
}

.pp-security-item p {
  font-size: 13px;
  color: var(--pp-text-secondary);
  margin: 0;
  line-height: 1.5;
}

.pp-rights-list {
  margin-top: 32px;
}

.pp-right-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(129, 129, 140, 0.1);
}

.pp-right-item:last-child {
  border-bottom: none;
}

.pp-right-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    var(--pp-brand-blue) 0%,
    var(--pp-brand-blue-teal) 100%
  );
  color: var(--pp-bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.pp-right-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--pp-text-primary);
  margin-bottom: 6px;
}

.pp-right-content p {
  font-size: 14px;
  color: var(--pp-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.pp-custom-table {
  width: 100%;
  margin-top: 32px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
}

.pp-custom-table thead {
  background: var(--pp-bg-tertiary);
}

.pp-custom-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--pp-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(129, 129, 140, 0.2);
}

.pp-custom-table tbody tr {
  transition: background 0.3s ease;
}

.pp-custom-table tbody tr:hover {
  background: rgba(21, 229, 232, 0.03);
}

.pp-custom-table tbody td {
  padding: 16px 20px;
  font-size: 15px;
  color: var(--pp-text-secondary);
  border-bottom: 1px solid rgba(129, 129, 140, 0.1);
}

.pp-custom-table tbody tr:last-child td {
  border-bottom: none;
}

.pp-badge-pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(21, 229, 232, 0.1);
  color: var(--pp-brand-blue);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.pp-contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.pp-contact-card {
  background: var(--pp-bg-tertiary);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(129, 129, 140, 0.1);
  transition: all 0.3s ease;
}

.pp-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(21, 229, 232, 0.1);
  border-color: var(--pp-brand-blue);
}

.pp-contact-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.pp-contact-card h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--pp-text-primary);
  margin-bottom: 12px;
}

.pp-contact-card p {
  font-size: 14px;
  color: var(--pp-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.pp-cta-section {
  padding: 80px 0 120px;
}

.pp-cta-card {
  background: linear-gradient(
    135deg,
    var(--pp-brand-blue-teal) 0%,
    var(--pp-brand-blue) 100%
  );
  padding: 60px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(21, 229, 232, 0.2);
}

.pp-cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.pp-cta-card h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--pp-bg-primary);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.pp-cta-card p {
  font-size: 18px;
  color: rgba(20, 20, 27, 0.8);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.pp-cta-button {
  padding: 16px 40px;
  background: var(--pp-bg-primary);
  color: var(--pp-text-primary);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  font-family: var(--pp-font-family);
}

.pp-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .pp-sidebar-nav {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .pp-content-wrapper {
    padding: 40px 32px;
  }

  .pp-hero-title {
    font-size: 42px;
  }

  .pp-hero-subtitle {
    font-size: 18px;
  }

  .pp-section-title {
    font-size: 28px;
  }

  .pp-hero-meta {
    flex-direction: column;
    gap: 8px;
  }

  .pp-meta-divider {
    display: none;
  }
}

@media (max-width: 767px) {
  .pp-hero-section {
    padding: 80px 0 60px;
    min-height: 400px;
  }

  .pp-hero-title {
    font-size: 32px;
  }

  .pp-hero-subtitle {
    font-size: 16px;
  }

  .pp-content-wrapper {
    padding: 32px 24px;
  }

  .pp-section-title {
    font-size: 24px;
  }

  .pp-subsection-title {
    font-size: 18px;
  }

  .pp-content-section {
    padding: 40px 0 60px;
  }

  .pp-content-block {
    margin-bottom: 50px;
  }

  .pp-cta-card {
    padding: 40px 24px;
  }

  .pp-cta-card h3 {
    font-size: 24px;
  }

  .pp-cta-card p {
    font-size: 16px;
  }

  .pp-feature-card {
    padding: 24px;
  }

  .pp-security-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
  }

  .pp-contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .pp-hero-title {
    font-size: 28px;
  }

  .pp-content-wrapper {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .pp-section-title {
    font-size: 22px;
  }

  .pp-image-placeholder {
    height: 200px;
  }

  .pp-table-responsive {
    overflow-x: auto;
  }
}

/* 18.11.2025  */

.career-page-wrapper {
  font-family: var(--font-family);
  background-color: var(--body-bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

.career-hero-section {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-tertiary) 100%
  );
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.career-hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--brand-blue) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
}

.career-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.2;
}

.career-hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.career-hero-cta {
  background: var(--brand-blue);
  color: var(--bg-primary);
  padding: 16px 48px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.career-hero-cta:hover {
  background: var(--brand-blue-teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 229, 232, 0.3);
}

.career-values-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

.career-section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-align: center;
}

.career-section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.career-value-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 32px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.career-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.career-value-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-blue);
}

.career-value-card:hover::before {
  transform: scaleX(1);
}

.career-value-icon {
  width: 80px;
  height: 80px;
  background: var(--brand-grey-blue);
  border-radius: 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-value-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.career-value-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.career-perks-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.career-perk-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
}

.career-perk-icon-wrapper {
  width: 56px;
  height: 56px;
  background: var(--brand-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 20px;
}

.career-perk-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.career-perk-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.career-perks-image-placeholder {
  background: var(--bg-tertiary);
  border: 2px dashed var(--border-color);
  border-radius: 16px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.career-positions-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.career-filter-tabs {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.career-filter-btn {
  padding: 12px 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.career-filter-btn:hover,
.career-filter-btn.active {
  background: var(--copay-btn-bg);
  border-color: var(--brand-blue);
  color: var(--bg-primary);
}

.career-job-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.career-job-card:hover {
  border-color: var(--brand-blue);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.career-job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.career-job-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.career-job-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.career-job-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.career-job-meta-icon {
  width: 18px;
  height: 18px;
  background: var(--brand-grey-blue);
  border-radius: 4px;
}

.career-job-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.career-job-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.career-job-tag {
  padding: 6px 16px;
  background: var(--bg-tertiary);
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.career-job-apply-btn {
  background: transparent;
  border: 2px solid var(--brand-blue);
  color: var(--brand-blue);
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.career-job-apply-btn:hover {
  background: var(--brand-blue);
  color: var(--bg-primary);
}

.career-team-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.career-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.career-team-member {
  text-align: center;
}

.career-team-photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-tertiary);
  border: 2px dashed var(--border-color);
  border-radius: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.career-team-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.career-team-role {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.career-cta-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--bg-tertiary) 0%,
    var(--bg-secondary) 100%
  );
  text-align: center;
}

.career-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.career-cta-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.career-cta-btn {
  background: var(--brand-blue);
  color: var(--bg-primary);
  padding: 18px 56px;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.career-cta-btn:hover {
  background: var(--brand-blue-teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 229, 232, 0.3);
}

@media (max-width: 1199px) {
  .career-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .career-hero-title {
    font-size: 2.75rem;
  }

  .career-section-title {
    font-size: 2.25rem;
  }

  .career-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .career-perks-image-placeholder {
    height: 400px;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .career-hero-section {
    padding: 80px 0 60px;
  }

  .career-hero-title {
    font-size: 2.25rem;
  }

  .career-hero-subtitle {
    font-size: 1.125rem;
  }

  .career-section-title {
    font-size: 2rem;
  }

  .career-values-section,
  .career-perks-section,
  .career-positions-section,
  .career-team-section,
  .career-cta-section {
    padding: 60px 0;
  }

  .career-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .career-job-header {
    flex-direction: column;
  }

  .career-filter-tabs {
    gap: 12px;
  }

  .career-filter-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .career-cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .career-hero-title {
    font-size: 1.875rem;
  }

  .career-hero-cta {
    padding: 14px 36px;
    font-size: 1rem;
  }

  .career-section-title {
    font-size: 1.75rem;
  }

  .career-team-grid {
    grid-template-columns: 1fr;
  }

  .career-value-card {
    padding: 32px 24px;
  }

  .career-job-card {
    padding: 24px;
  }

  .career-cta-title {
    font-size: 1.75rem;
  }

  .career-cta-btn {
    padding: 16px 40px;
    font-size: 1rem;
  }
}

/* 19.11.2025  */

/* ============================================
   User Agreement Page Styles
   ============================================ */

.ua-section {
  padding: 100px 0 120px;
  position: relative;
  background: var(--bg-primary, #0a0a0a);
  color: var(--text-primary, #ffffff);
}

.ua-header {
  text-align: center;
  margin-bottom: 60px;
}

.ua-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary, #ffffff);
  margin-bottom: 24px;
  line-height: 1.2;
  background: linear-gradient(135deg, #15e5e8 0%, #5b8def 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ua-intro {
  font-size: 18px;
  color: var(--text-secondary, rgba(255, 255, 255, 0.7));
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.ua-content {
  margin-bottom: 60px;
}

.ua-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary, #ffffff);
}

.ua-text p {
  margin-bottom: 20px;
}

.ua-text h2,
.ua-text h3,
.ua-text h4 {
  color: var(--text-primary, #ffffff);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.ua-text ul,
.ua-text ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.ua-text li {
  margin-bottom: 10px;
}

.ua-placeholder {
  text-align: center;
  color: var(--text-secondary, rgba(255, 255, 255, 0.5));
  font-style: italic;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.ua-download-wrapper {
  text-align: center;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ua-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #15e5e8 0%, #5b8def 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(21, 229, 232, 0.3);
  border: none;
  cursor: pointer;
}

.ua-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 229, 232, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.ua-download-btn:active {
  transform: translateY(0);
}

.ua-download-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.ua-filename {
  margin-top: 15px;
  font-size: 14px;
  color: var(--text-secondary, rgba(255, 255, 255, 0.6));
}

.ua-no-pdf {
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--text-secondary, rgba(255, 255, 255, 0.6));
  font-style: italic;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .ua-section {
    padding: 60px 0 80px;
  }

  .ua-title {
    font-size: 36px;
  }

  .ua-intro {
    font-size: 16px;
  }

  .ua-download-wrapper {
    margin-top: 40px;
    padding-top: 40px;
  }

  .ua-download-btn {
    padding: 14px 28px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .ua-section {
    padding: 40px 0 60px;
  }

  .ua-header {
    margin-bottom: 40px;
  }

  .ua-title {
    font-size: 28px;
  }

  .ua-intro {
    font-size: 15px;
  }

  .ua-content {
    margin-bottom: 40px;
  }

  .ua-download-wrapper {
    margin-top: 30px;
    padding-top: 30px;
  }

  .ua-download-btn {
    padding: 12px 24px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   Job Detail Page Styles
   ============================================ */

.job-detail-section {
  padding: 100px 0 120px;
  position: relative;
  background: var(--bg-primary, #0a0a0a);
  color: var(--text-primary, #ffffff);
  min-height: 80vh;
}

.job-breadcrumb {
  margin-bottom: 40px;
}

.job-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 8px;
}

.job-breadcrumb .breadcrumb-item {
  color: var(--text-secondary, rgba(255, 255, 255, 0.7));
  font-size: 14px;
}

.job-breadcrumb .breadcrumb-item a {
  color: var(--text-secondary, rgba(255, 255, 255, 0.7));
  text-decoration: none;
  transition: color 0.3s ease;
}

.job-breadcrumb .breadcrumb-item a:hover {
  color: var(--brand-blue, #15e5e8);
}

.job-breadcrumb .breadcrumb-item.active {
  color: var(--text-primary, #ffffff);
}

.job-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 8px;
  color: var(--text-secondary, rgba(255, 255, 255, 0.5));
}

.job-detail-header {
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.job-detail-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary, #ffffff);
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #15e5e8 0%, #5b8def 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.job-detail-subtitle {
  font-size: 20px;
  color: var(--text-secondary, rgba(255, 255, 255, 0.8));
  line-height: 1.6;
  margin-bottom: 30px;
}

.job-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.job-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-primary, #ffffff);
  font-size: 14px;
  font-weight: 500;
}

.job-meta-item svg {
  width: 16px;
  height: 16px;
  fill: var(--brand-blue, #15e5e8);
}

.job-detail-content {
  margin-bottom: 60px;
}

.job-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary, #ffffff);
}

.job-description h2,
.job-description h3,
.job-description h4 {
  color: var(--text-primary, #ffffff);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.job-description h2 {
  font-size: 28px;
}

.job-description h3 {
  font-size: 24px;
}

.job-description h4 {
  font-size: 20px;
}

.job-description p {
  margin-bottom: 20px;
}

.job-description ul,
.job-description ol {
  margin-left: 30px;
  margin-bottom: 20px;
}

.job-description li {
  margin-bottom: 10px;
}

.job-description strong {
  color: var(--brand-blue, #15e5e8);
  font-weight: 600;
}

.job-no-content {
  text-align: center;
  color: var(--text-secondary, rgba(255, 255, 255, 0.5));
  font-style: italic;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.job-detail-tags {
  margin-bottom: 60px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.job-tags-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary, #ffffff);
  margin-bottom: 20px;
}

.job-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.job-tag {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(
    135deg,
    rgba(21, 229, 232, 0.2) 0%,
    rgba(91, 141, 239, 0.2) 100%
  );
  border: 1px solid rgba(21, 229, 232, 0.3);
  border-radius: 20px;
  color: var(--brand-blue, #15e5e8);
  font-size: 14px;
  font-weight: 500;
}

.job-detail-apply {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.job-apply-card {
  background: linear-gradient(
    135deg,
    rgba(21, 229, 232, 0.1) 0%,
    rgba(91, 141, 239, 0.1) 100%
  );
  border: 1px solid rgba(21, 229, 232, 0.2);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.job-apply-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary, #ffffff);
  margin-bottom: 15px;
}

.job-apply-description {
  font-size: 16px;
  color: var(--text-secondary, rgba(255, 255, 255, 0.8));
  margin-bottom: 30px;
  line-height: 1.6;
}

.job-apply-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.job-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: linear-gradient(135deg, #15e5e8 0%, #5b8def 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(21, 229, 232, 0.3);
  border: none;
  cursor: pointer;
}

.job-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 229, 232, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.job-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: transparent;
  color: var(--text-primary, #ffffff);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.job-back-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary, #ffffff);
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive Styles for Job Detail Page */
@media (max-width: 991px) {
  .job-detail-section {
    padding: 60px 0 80px;
  }

  .job-detail-title {
    font-size: 36px;
  }

  .job-detail-subtitle {
    font-size: 18px;
  }

  .job-apply-card {
    padding: 30px;
  }

  .job-apply-title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .job-detail-section {
    padding: 40px 0 60px;
  }

  .job-detail-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
  }

  .job-detail-title {
    font-size: 28px;
  }

  .job-detail-subtitle {
    font-size: 16px;
  }

  .job-detail-meta {
    gap: 12px;
  }

  .job-meta-item {
    font-size: 12px;
    padding: 6px 12px;
  }

  .job-description {
    font-size: 15px;
  }

  .job-description h2 {
    font-size: 24px;
  }

  .job-description h3 {
    font-size: 20px;
  }

  .job-description h4 {
    font-size: 18px;
  }

  .job-detail-tags {
    padding: 20px;
  }

  .job-tags-title {
    font-size: 18px;
  }

  .job-apply-card {
    padding: 24px;
  }

  .job-apply-title {
    font-size: 22px;
  }

  .job-apply-description {
    font-size: 15px;
  }

  .job-apply-actions {
    flex-direction: column;
  }

  .job-apply-btn,
  .job-back-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
  }
}

/* Fiat OTC Statement Page Styles */
.fiat-otc-page-wrapper {
  background-color: var(--body-bg-primary);
  color: var(--text-primary);
  font-family: var(--font-family);
  line-height: 1.8;
  padding-top: 0;
}

/* Hero Section */
.fiat-otc-hero-section {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-tertiary) 100%
  );
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.fiat-otc-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(21, 229, 232, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.fiat-otc-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.fiat-otc-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

/* Content Section */
.fiat-otc-content-section {
  padding: 80px 0;
}

.fiat-otc-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.fiat-otc-intro-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 50px;
  line-height: 1.9;
}

.fiat-otc-intro-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Section Cards */
.fiat-otc-section-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.fiat-otc-section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fiat-otc-section-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--brand-blue);
}

.fiat-otc-section-card:hover::before {
  opacity: 1;
}

.fiat-otc-section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 100%
  );
  color: var(--text-primary);
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(21, 229, 232, 0.3);
}

.fiat-otc-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.fiat-otc-section-content {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.9;
}

.fiat-otc-section-content p {
  margin-bottom: 15px;
}

.fiat-otc-section-content p:last-child {
  margin-bottom: 0;
}

.fiat-otc-section-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.fiat-otc-section-content em {
  color: var(--text-secondary);
  font-style: italic;
}

/* Sub-sections */
.fiat-otc-subsection {
  margin-top: 25px;
  padding-left: 20px;
  border-left: 2px solid var(--border-color);
}

.fiat-otc-subsection-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
  margin-top: 25px;
}

.fiat-otc-subsection-title:first-child {
  margin-top: 0;
}

.fiat-otc-subsection-content {
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.9;
}

.fiat-otc-subsection-content p {
  margin-bottom: 12px;
}

.fiat-otc-subsection-content p:last-child {
  margin-bottom: 0;
}

/* List Styles */
.fiat-otc-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.fiat-otc-list-item {
  padding: 12px 0 12px 30px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.9;
}

.fiat-otc-list-item::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 1.2rem;
}

.fiat-otc-list-item strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Highlight Box */
.fiat-otc-highlight-box {
  background: var(--bg-tertiary);
  border-left: 4px solid var(--brand-blue);
  padding: 25px;
  margin: 30px 0;
  border-radius: 8px;
}

.fiat-otc-highlight-box p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.9;
}

.fiat-otc-highlight-box strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Contact Info */
.fiat-otc-contact-info {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-tertiary) 100%
  );
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  margin-top: 50px;
  text-align: center;
}

.fiat-otc-contact-info p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 1rem;
}

.fiat-otc-contact-info a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.fiat-otc-contact-info a:hover {
  color: var(--brand-blue-teal);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .fiat-otc-hero-section {
    padding: 60px 0 50px;
  }

  .fiat-otc-hero-title {
    font-size: 2.5rem;
  }

  .fiat-otc-hero-subtitle {
    font-size: 1rem;
  }

  .fiat-otc-content-section {
    padding: 50px 0;
  }

  .fiat-otc-section-card {
    padding: 25px 20px;
  }

  .fiat-otc-section-title {
    font-size: 1.5rem;
  }

  .fiat-otc-section-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .fiat-otc-subsection {
    padding-left: 15px;
  }

  .fiat-otc-subsection-title {
    font-size: 1.1rem;
  }

  .fiat-otc-highlight-box {
    padding: 20px;
  }

  .fiat-otc-contact-info {
    padding: 25px 20px;
  }
}

@media (max-width: 576px) {
  .fiat-otc-hero-title {
    font-size: 2rem;
  }

  .fiat-otc-section-card {
    padding: 20px 15px;
  }

  .fiat-otc-section-title {
    font-size: 1.3rem;
  }

  .fiat-otc-intro-text {
    font-size: 1rem;
  }

  .fiat-otc-section-content {
    font-size: 0.95rem;
  }
}

/* AML-CFT Page Styles */
.aml-cft-page-wrapper {
  background-color: var(--body-bg-primary);
  color: var(--text-primary);
  font-family: var(--font-family);
  line-height: 1.8;
  padding-top: 0;
}

/* Hero Section */
.aml-cft-hero-section {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-tertiary) 100%
  );
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.aml-cft-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(21, 229, 232, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.aml-cft-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.aml-cft-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.aml-cft-hero-date {
  font-size: 0.95rem;
  color: var(--brand-blue);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Content Section */
.aml-cft-content-section {
  padding: 80px 0;
}

.aml-cft-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.aml-cft-intro-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 50px;
  line-height: 1.9;
}

.aml-cft-intro-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Section Cards */
.aml-cft-section-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.aml-cft-section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aml-cft-section-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--brand-blue);
}

.aml-cft-section-card:hover::before {
  opacity: 1;
}

.aml-cft-section-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 100%
  );
  color: var(--text-primary);
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(21, 229, 232, 0.3);
}

.aml-cft-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.aml-cft-section-content {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.9;
}

.aml-cft-section-content p {
  margin-bottom: 15px;
}

.aml-cft-section-content p:last-child {
  margin-bottom: 0;
}

.aml-cft-section-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.aml-cft-section-content em {
  color: var(--text-secondary);
  font-style: italic;
}

/* Sub-sections */
.aml-cft-subsection {
  margin-top: 25px;
  padding-left: 20px;
  border-left: 2px solid var(--border-color);
}

.aml-cft-subsection-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
  margin-top: 25px;
}

.aml-cft-subsection-title:first-child {
  margin-top: 0;
}

.aml-cft-subsection h4.aml-cft-subsection-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  margin-top: 20px;
}

.aml-cft-subsection-content {
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.9;
}

.aml-cft-subsection-content p {
  margin-bottom: 12px;
}

.aml-cft-subsection-content p:last-child {
  margin-bottom: 0;
}

/* List Styles */
.aml-cft-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.aml-cft-list-item {
  padding: 12px 0 12px 30px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.9;
}

.aml-cft-list-item::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 1.2rem;
}

.aml-cft-list-item strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Bullet List Styles */
.aml-cft-bullet-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.aml-cft-bullet-list-item {
  padding: 8px 0 8px 25px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.9;
}

.aml-cft-bullet-list-item::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 1rem;
}

/* Highlight Box */
.aml-cft-highlight-box {
  background: var(--bg-tertiary);
  border-left: 4px solid var(--brand-blue);
  padding: 25px;
  margin: 30px 0;
  border-radius: 8px;
}

.aml-cft-highlight-box p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.9;
}

.aml-cft-highlight-box strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Contact Info */
.aml-cft-contact-info {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-tertiary) 100%
  );
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  margin-top: 50px;
  text-align: center;
}

.aml-cft-contact-info p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 1rem;
}

.aml-cft-contact-info a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.aml-cft-contact-info a:hover {
  color: var(--brand-blue-teal);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .aml-cft-hero-section {
    padding: 60px 0 50px;
  }

  .aml-cft-hero-title {
    font-size: 2.5rem;
  }

  .aml-cft-hero-subtitle {
    font-size: 1rem;
  }

  .aml-cft-content-section {
    padding: 50px 0;
  }

  .aml-cft-section-card {
    padding: 25px 20px;
  }

  .aml-cft-section-title {
    font-size: 1.5rem;
  }

  .aml-cft-section-letter {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .aml-cft-subsection {
    padding-left: 15px;
  }

  .aml-cft-subsection-title {
    font-size: 1.1rem;
  }

  .aml-cft-highlight-box {
    padding: 20px;
  }

  .aml-cft-contact-info {
    padding: 25px 20px;
  }
}

@media (max-width: 576px) {
  .aml-cft-hero-title {
    font-size: 2rem;
  }

  .aml-cft-section-card {
    padding: 20px 15px;
  }

  .aml-cft-section-title {
    font-size: 1.3rem;
  }

  .aml-cft-intro-text {
    font-size: 1rem;
  }

  .aml-cft-section-content {
    font-size: 0.95rem;
  }
}

/* Terms & Conditions Page Styles */
.terms-page-wrapper {
  background-color: var(--body-bg-primary);
  color: var(--text-primary);
  font-family: var(--font-family);
  line-height: 1.8;
  padding-top: 0;
}

/* Hero Section */
.terms-hero-section {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-tertiary) 100%
  );
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.terms-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(21, 229, 232, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.terms-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.terms-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.terms-hero-date {
  font-size: 0.95rem;
  color: var(--brand-blue);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Content Section */
.terms-content-section {
  padding: 80px 0;
}

.terms-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.terms-intro-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 50px;
  line-height: 1.9;
}

.terms-intro-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Section Cards */
.terms-section-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.terms-section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.terms-section-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--brand-blue);
}

.terms-section-card:hover::before {
  opacity: 1;
}

.terms-section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 100%
  );
  color: var(--text-primary);
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(21, 229, 232, 0.3);
}

.terms-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.terms-section-content {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.9;
}

.terms-section-content p {
  margin-bottom: 15px;
}

.terms-section-content p:last-child {
  margin-bottom: 0;
}

.terms-section-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.terms-section-content em {
  color: var(--text-secondary);
  font-style: italic;
}

/* Sub-sections */
.terms-subsection {
  margin-top: 25px;
  padding-left: 20px;
  border-left: 2px solid var(--border-color);
}

.terms-subsection-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
  margin-top: 25px;
}

.terms-subsection-title:first-child {
  margin-top: 0;
}

.terms-subsection-content {
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.9;
}

.terms-subsection-content p {
  margin-bottom: 12px;
}

.terms-subsection-content p:last-child {
  margin-bottom: 0;
}

/* List Styles */
.terms-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.terms-list-item {
  padding: 12px 0 12px 30px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.9;
}

.terms-list-item::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 1.2rem;
}

.terms-list-item strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Highlight Box */
.terms-highlight-box {
  background: var(--bg-tertiary);
  border-left: 4px solid var(--brand-blue);
  padding: 25px;
  margin: 30px 0;
  border-radius: 8px;
}

.terms-highlight-box p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.9;
}

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

/* Contact Info */
.terms-contact-info {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-tertiary) 100%
  );
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  margin-top: 50px;
  text-align: center;
}

.terms-contact-info p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 1rem;
}

.terms-contact-info a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.terms-contact-info a:hover {
  color: var(--brand-blue-teal);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .terms-hero-section {
    padding: 60px 0 50px;
  }

  .terms-hero-title {
    font-size: 2.5rem;
  }

  .terms-hero-subtitle {
    font-size: 1rem;
  }

  .terms-content-section {
    padding: 50px 0;
  }

  .terms-section-card {
    padding: 25px 20px;
  }

  .terms-section-title {
    font-size: 1.5rem;
  }

  .terms-section-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .terms-subsection {
    padding-left: 15px;
  }

  .terms-subsection-title {
    font-size: 1.1rem;
  }

  .terms-highlight-box {
    padding: 20px;
  }

  .terms-contact-info {
    padding: 25px 20px;
  }
}

@media (max-width: 576px) {
  .terms-hero-title {
    font-size: 2rem;
  }

  .terms-section-card {
    padding: 20px 15px;
  }

  .terms-section-title {
    font-size: 1.3rem;
  }

  .terms-intro-text {
    font-size: 1rem;
  }

  .terms-section-content {
    font-size: 0.95rem;
  }
}

/* Risk & Compliance Disclosure Page Styles */
.risk-compliance-page-wrapper {
  background-color: var(--body-bg-primary);
  color: var(--text-primary);
  font-family: var(--font-family);
  line-height: 1.8;
  padding-top: 0;
}

/* Hero Section */
.risk-compliance-hero-section {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-tertiary) 100%
  );
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.risk-compliance-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(21, 229, 232, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.risk-compliance-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.risk-compliance-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.risk-compliance-hero-date {
  font-size: 0.95rem;
  color: var(--brand-blue);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Content Section */
.risk-compliance-content-section {
  padding: 80px 0;
}

.risk-compliance-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.risk-compliance-intro-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 50px;
  line-height: 1.9;
}

.risk-compliance-intro-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Section Cards */
.risk-compliance-section-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.risk-compliance-section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.risk-compliance-section-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--brand-blue);
}

.risk-compliance-section-card:hover::before {
  opacity: 1;
}

.risk-compliance-section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 100%
  );
  color: var(--text-primary);
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(21, 229, 232, 0.3);
}

.risk-compliance-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.risk-compliance-section-content {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.9;
}

.risk-compliance-section-content p {
  margin-bottom: 15px;
}

.risk-compliance-section-content p:last-child {
  margin-bottom: 0;
}

.risk-compliance-section-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.risk-compliance-section-content em {
  color: var(--text-secondary);
  font-style: italic;
}

/* Sub-sections */
.risk-compliance-subsection {
  margin-top: 25px;
  padding-left: 20px;
  border-left: 2px solid var(--border-color);
}

.risk-compliance-subsection-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
  margin-top: 25px;
}

.risk-compliance-subsection-title:first-child {
  margin-top: 0;
}

.risk-compliance-subsection-content {
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.9;
}

.risk-compliance-subsection-content p {
  margin-bottom: 12px;
}

.risk-compliance-subsection-content p:last-child {
  margin-bottom: 0;
}

/* List Styles */
.risk-compliance-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.risk-compliance-list-item {
  padding: 12px 0 12px 30px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.9;
}

.risk-compliance-list-item::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 1.2rem;
}

.risk-compliance-list-item strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Highlight Box */
.risk-compliance-highlight-box {
  background: var(--bg-tertiary);
  border-left: 4px solid var(--brand-blue);
  padding: 25px;
  margin: 30px 0;
  border-radius: 8px;
}

.risk-compliance-highlight-box p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.9;
}

.risk-compliance-highlight-box strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Contact Info */
.risk-compliance-contact-info {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-tertiary) 100%
  );
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  margin-top: 50px;
  text-align: center;
}

.risk-compliance-contact-info p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 1rem;
}

.risk-compliance-contact-info a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.risk-compliance-contact-info a:hover {
  color: var(--brand-blue-teal);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .risk-compliance-hero-section {
    padding: 60px 0 50px;
  }

  .risk-compliance-hero-title {
    font-size: 2.5rem;
  }

  .risk-compliance-hero-subtitle {
    font-size: 1rem;
  }

  .risk-compliance-content-section {
    padding: 50px 0;
  }

  .risk-compliance-section-card {
    padding: 25px 20px;
  }

  .risk-compliance-section-title {
    font-size: 1.5rem;
  }

  .risk-compliance-section-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .risk-compliance-subsection {
    padding-left: 15px;
  }

  .risk-compliance-subsection-title {
    font-size: 1.1rem;
  }

  .risk-compliance-highlight-box {
    padding: 20px;
  }

  .risk-compliance-contact-info {
    padding: 25px 20px;
  }
}

@media (max-width: 576px) {
  .risk-compliance-hero-title {
    font-size: 2rem;
  }

  .risk-compliance-section-card {
    padding: 20px 15px;
  }

  .risk-compliance-section-title {
    font-size: 1.3rem;
  }

  .risk-compliance-intro-text {
    font-size: 1rem;
  }

  .risk-compliance-section-content {
    font-size: 0.95rem;
  }
}

/* US Person Definition Page Styles - Extraordinary Layout */
.us-person-page-wrapper {
  background-color: var(--body-bg-primary);
  color: var(--text-primary);
  font-family: var(--font-family);
  line-height: 1.8;
  padding-top: 0;
  position: relative;
}

/* Hero Section with Gradient Background */
.us-person-hero-section {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-tertiary) 50%,
    var(--bg-secondary) 100%
  );
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.us-person-hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(21, 229, 232, 0.15) 0%,
    transparent 70%
  );
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.us-person-hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

.us-person-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.us-person-hero-date {
  font-size: 1rem;
  color: var(--brand-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--bg-tertiary);
  border-radius: 25px;
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
}

/* Content Section with Alternating Layout */
.us-person-content-section {
  padding: 100px 0;
  position: relative;
}

.us-person-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

/* Alternating Card Styles */
.us-person-section-card {
  margin-bottom: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Odd Cards - Left Aligned with Icon */
.us-person-section-card:nth-child(odd) {
  padding-left: 80px;
}

.us-person-section-card:nth-child(odd)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 100%
  );
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(21, 229, 232, 0.4);
}

.us-person-section-card:nth-child(odd) .us-person-section-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.5rem;
  z-index: 2;
}

/* Even Cards - Right Aligned with Different Style */
.us-person-section-card:nth-child(even) {
  padding-right: 80px;
  text-align: right;
}

.us-person-section-card:nth-child(even)::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    225deg,
    var(--brand-blue-teal) 0%,
    var(--brand-blue) 100%
  );
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(24, 71, 181, 0.4);
}

.us-person-section-card:nth-child(even) .us-person-section-number {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.5rem;
  z-index: 2;
}

/* Card Content Styles */
.us-person-card-content {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: all 0.4s ease;
}

.us-person-section-card:nth-child(odd) .us-person-card-content {
  border-left: 4px solid var(--brand-blue);
}

.us-person-section-card:nth-child(even) .us-person-card-content {
  border-right: 4px solid var(--brand-blue-teal);
}

.us-person-section-card:hover .us-person-card-content {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--brand-blue);
}

.us-person-section-card:nth-child(odd):hover .us-person-card-content {
  border-left-width: 6px;
}

.us-person-section-card:nth-child(even):hover .us-person-card-content {
  border-right-width: 6px;
}

.us-person-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
  line-height: 1.3;
  position: relative;
}

.us-person-section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 100%
  );
  border-radius: 2px;
}

.us-person-section-card:nth-child(even) .us-person-section-title::after {
  right: 0;
}

.us-person-section-content {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-top: 20px;
}

.us-person-section-content p {
  margin-bottom: 18px;
}

.us-person-section-content p:last-child {
  margin-bottom: 0;
}

.us-person-section-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* List Styles with Custom Bullets */
.us-person-list {
  list-style: none;
  padding-left: 0;
  margin: 25px 0;
}

.us-person-list-item {
  padding: 15px 0 15px 40px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.9;
  transition: all 0.3s ease;
}

.us-person-list-item::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.us-person-section-card:nth-child(even) .us-person-list-item {
  padding: 15px 40px 15px 0;
  text-align: right;
}

.us-person-section-card:nth-child(even) .us-person-list-item::before {
  left: auto;
  right: 0;
  content: "◂";
}

.us-person-list-item:hover {
  color: var(--text-primary);
  padding-left: 50px;
}

.us-person-section-card:nth-child(even) .us-person-list-item:hover {
  padding-right: 50px;
  padding-left: 0;
}

.us-person-list-item:hover::before {
  transform: scale(1.3);
  color: var(--brand-blue-teal);
}

.us-person-list-item strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Highlight Box with Gradient */
.us-person-highlight-box {
  background: linear-gradient(
    135deg,
    var(--bg-tertiary) 0%,
    var(--bg-secondary) 100%
  );
  border-left: 5px solid var(--brand-blue);
  padding: 30px;
  margin: 30px 0;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.us-person-highlight-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(21, 229, 232, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.us-person-highlight-box p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

.us-person-highlight-box strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Contact Info with Modern Design */
.us-person-contact-info {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-tertiary) 100%
  );
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  margin-top: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.us-person-contact-info::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(21, 229, 232, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 10s ease-in-out infinite;
  pointer-events: none;
}

.us-person-contact-info p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.us-person-contact-info a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.us-person-contact-info a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-blue);
  transition: width 0.3s ease;
}

.us-person-contact-info a:hover {
  color: var(--brand-blue-teal);
}

.us-person-contact-info a:hover::after {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .us-person-section-card:nth-child(odd),
  .us-person-section-card:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }

  .us-person-section-card:nth-child(odd)::before,
  .us-person-section-card:nth-child(even)::before {
    left: 0;
    right: auto;
  }

  .us-person-section-card:nth-child(odd) .us-person-section-number,
  .us-person-section-card:nth-child(even) .us-person-section-number {
    left: 0;
    right: auto;
  }

  .us-person-section-card:nth-child(even) .us-person-card-content {
    border-right: 2px solid var(--border-color);
    border-left: 4px solid var(--brand-blue);
  }

  .us-person-section-card:nth-child(even) .us-person-section-title::after {
    right: auto;
    left: 0;
  }

  .us-person-section-card:nth-child(even) .us-person-list-item {
    padding: 15px 0 15px 40px;
    text-align: left;
  }

  .us-person-section-card:nth-child(even) .us-person-list-item::before {
    left: 0;
    right: auto;
    content: "▸";
  }

  .us-person-section-card:nth-child(even) .us-person-list-item:hover {
    padding-right: 0;
    padding-left: 50px;
  }
}

@media (max-width: 768px) {
  .us-person-hero-section {
    padding: 80px 0 60px;
  }

  .us-person-hero-title {
    font-size: 2.5rem;
  }

  .us-person-hero-subtitle {
    font-size: 1rem;
  }

  .us-person-content-section {
    padding: 60px 0;
  }

  .us-person-card-content {
    padding: 25px 20px;
  }

  .us-person-section-title {
    font-size: 1.5rem;
  }

  .us-person-section-card:nth-child(odd)::before,
  .us-person-section-card:nth-child(even)::before {
    width: 50px;
    height: 50px;
  }

  .us-person-section-card:nth-child(odd) .us-person-section-number,
  .us-person-section-card:nth-child(even) .us-person-section-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .us-person-contact-info {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .us-person-hero-title {
    font-size: 2rem;
  }

  .us-person-card-content {
    padding: 20px 15px;
  }

  .us-person-section-title {
    font-size: 1.3rem;
  }

  .us-person-section-content {
    font-size: 0.95rem;
  }

  .us-person-section-card:nth-child(odd)::before,
  .us-person-section-card:nth-child(even)::before {
    width: 40px;
    height: 40px;
  }

  .us-person-section-card:nth-child(odd) .us-person-section-number,
  .us-person-section-card:nth-child(even) .us-person-section-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background-color: var(--brand-blue);
  color: var(--text-primary);
}

/* Additional Visual Enhancements */
.us-person-section-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.us-person-section-card:nth-child(1) {
  animation-delay: 0.1s;
}
.us-person-section-card:nth-child(2) {
  animation-delay: 0.2s;
}
.us-person-section-card:nth-child(3) {
  animation-delay: 0.3s;
}
.us-person-section-card:nth-child(4) {
  animation-delay: 0.4s;
}
.us-person-section-card:nth-child(5) {
  animation-delay: 0.5s;
}
.us-person-section-card:nth-child(6) {
  animation-delay: 0.6s;
}
.us-person-section-card:nth-child(7) {
  animation-delay: 0.7s;
}
.us-person-section-card:nth-child(8) {
  animation-delay: 0.8s;
}
.us-person-section-card:nth-child(9) {
  animation-delay: 0.9s;
}

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

/* Restricted Jurisdiction Policy Page Styles - Extraordinary Layout */
.restricted-jurisdiction-page-wrapper {
  background-color: var(--body-bg-primary);
  color: var(--text-primary);
  font-family: var(--font-family);
  line-height: 1.8;
  padding-top: 0;
  position: relative;
  overflow-x: hidden;
}

/* Hero Section with Animated Background */
.restricted-jurisdiction-hero-section {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-tertiary) 50%,
    var(--bg-secondary) 100%
  );
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
}

.restricted-jurisdiction-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(21, 229, 232, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(24, 71, 181, 0.15) 0%,
      transparent 50%
    );
  animation: gradientShift 15s ease infinite;
  pointer-events: none;
}

@keyframes gradientShift {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.restricted-jurisdiction-hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
  letter-spacing: -1.5px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.restricted-jurisdiction-hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Content Section with Unique Layout */
.restricted-jurisdiction-content-section {
  padding: 100px 0;
  position: relative;
}

.restricted-jurisdiction-content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

/* Main Policy Card - Large and Prominent */
.restricted-jurisdiction-main-card {
  background: var(--bg-secondary);
  border: 3px solid var(--border-color);
  border-radius: 25px;
  padding: 60px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.restricted-jurisdiction-main-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(21, 229, 232, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.restricted-jurisdiction-main-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 50%,
    var(--brand-blue) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.restricted-jurisdiction-main-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-color: var(--brand-blue);
}

.restricted-jurisdiction-main-card-content {
  position: relative;
  z-index: 2;
}

.restricted-jurisdiction-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

.restricted-jurisdiction-main-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100px;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 100%
  );
  border-radius: 3px;
}

.restricted-jurisdiction-main-content {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 2;
  margin-top: 30px;
}

.restricted-jurisdiction-main-content p {
  margin-bottom: 25px;
}

.restricted-jurisdiction-main-content p:last-child {
  margin-bottom: 0;
}

.restricted-jurisdiction-main-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Secondary Policy Card - Different Style */
.restricted-jurisdiction-secondary-card {
  background: linear-gradient(
    135deg,
    var(--bg-tertiary) 0%,
    var(--bg-secondary) 100%
  );
  border: 2px solid var(--border-color);
  border-left: 6px solid var(--brand-blue-teal);
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 50px;
  position: relative;
  transition: all 0.4s ease;
}

.restricted-jurisdiction-secondary-card::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(21, 229, 232, 0.1) 0%,
    rgba(24, 71, 181, 0.1) 100%
  );
  border-radius: 50%;
  pointer-events: none;
}

.restricted-jurisdiction-secondary-card:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  /* border-left-width: 8px; */
}

.restricted-jurisdiction-secondary-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
  line-height: 1.3;
}

.restricted-jurisdiction-secondary-content {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 2;
}

.restricted-jurisdiction-secondary-content p {
  margin-bottom: 20px;
}

.restricted-jurisdiction-secondary-content p:last-child {
  margin-bottom: 0;
}

.restricted-jurisdiction-secondary-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Highlight Box with Modern Design */
.restricted-jurisdiction-highlight-box {
  background: var(--bg-tertiary);
  border: 2px solid var(--brand-blue);
  border-radius: 15px;
  padding: 35px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.restricted-jurisdiction-highlight-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 100%
  );
}

.restricted-jurisdiction-highlight-box p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 2;
  font-size: 1.1rem;
  padding-left: 20px;
}

.restricted-jurisdiction-highlight-box strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Contact Info with Elegant Design */
.restricted-jurisdiction-contact-info {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-tertiary) 100%
  );
  border: 3px solid var(--border-color);
  border-radius: 25px;
  padding: 50px;
  margin-top: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.restricted-jurisdiction-contact-info::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(
    circle,
    rgba(21, 229, 232, 0.1) 0%,
    transparent 70%
  );
  animation: float 12s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(50px, 50px);
  }
}

.restricted-jurisdiction-contact-info::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--brand-blue) 50%,
    transparent 100%
  );
  animation: slide 3s ease-in-out infinite;
}

@keyframes slide {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.restricted-jurisdiction-contact-info p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}

.restricted-jurisdiction-contact-info a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  padding: 5px 0;
}

.restricted-jurisdiction-contact-info a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brand-blue);
  transition: width 0.3s ease;
}

.restricted-jurisdiction-contact-info a:hover {
  color: var(--brand-blue-teal);
}

.restricted-jurisdiction-contact-info a:hover::before {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .restricted-jurisdiction-hero-title {
    font-size: 3.5rem;
  }

  .restricted-jurisdiction-main-card,
  .restricted-jurisdiction-secondary-card {
    padding: 40px;
  }

  .restricted-jurisdiction-main-title {
    font-size: 2rem;
  }

  .restricted-jurisdiction-secondary-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .restricted-jurisdiction-hero-section {
    padding: 100px 0 80px;
  }

  .restricted-jurisdiction-hero-title {
    font-size: 2.8rem;
  }

  .restricted-jurisdiction-hero-subtitle {
    font-size: 1.1rem;
  }

  .restricted-jurisdiction-content-section {
    padding: 60px 0;
  }

  .restricted-jurisdiction-main-card,
  .restricted-jurisdiction-secondary-card {
    padding: 30px 25px;
    border-radius: 20px;
  }

  .restricted-jurisdiction-main-title {
    font-size: 1.8rem;
  }

  .restricted-jurisdiction-secondary-title {
    font-size: 1.5rem;
  }

  .restricted-jurisdiction-main-content,
  .restricted-jurisdiction-secondary-content {
    font-size: 1rem;
  }

  .restricted-jurisdiction-highlight-box {
    padding: 25px 20px;
  }

  .restricted-jurisdiction-contact-info {
    padding: 35px 25px;
  }
}

@media (max-width: 576px) {
  .restricted-jurisdiction-hero-title {
    font-size: 2.2rem;
  }

  .restricted-jurisdiction-hero-subtitle {
    font-size: 1rem;
  }

  .restricted-jurisdiction-main-card,
  .restricted-jurisdiction-secondary-card {
    padding: 25px 20px;
  }

  .restricted-jurisdiction-main-title {
    font-size: 1.5rem;
  }

  .restricted-jurisdiction-secondary-title {
    font-size: 1.3rem;
  }

  .restricted-jurisdiction-main-content,
  .restricted-jurisdiction-secondary-content {
    font-size: 0.95rem;
  }

  .restricted-jurisdiction-highlight-box {
    padding: 20px 15px;
  }

  .restricted-jurisdiction-highlight-box p {
    padding-left: 15px;
    font-size: 1rem;
  }

  .restricted-jurisdiction-contact-info {
    padding: 30px 20px;
  }

  .restricted-jurisdiction-contact-info p {
    font-size: 1rem;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background-color: var(--brand-blue);
  color: var(--text-primary);
}

/* Fade In Animation */
.restricted-jurisdiction-main-card,
.restricted-jurisdiction-secondary-card {
  animation: fadeInScale 0.8s ease-out forwards;
  opacity: 0;
}

.restricted-jurisdiction-main-card {
  animation-delay: 0.2s;
}

.restricted-jurisdiction-secondary-card {
  animation-delay: 0.4s;
}

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

/* Law Enforcement Request Guidelines Page Styles - Extraordinary Layout */
.law-enforcement-page-wrapper {
  background-color: var(--body-bg-primary);
  color: var(--text-primary);
  font-family: var(--font-family);
  line-height: 1.8;
  padding-top: 0;
  position: relative;
}

/* Hero Section with Dynamic Background */
.law-enforcement-hero-section {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-tertiary) 30%,
    var(--bg-secondary) 60%,
    var(--bg-tertiary) 100%
  );
  background-size: 400% 400%;
  padding: 150px 0 120px;
  position: relative;
  overflow: hidden;
  animation: gradientMove 20s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.law-enforcement-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(21, 229, 232, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(24, 71, 181, 0.15) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.law-enforcement-hero-title {
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
  letter-spacing: -1.2px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.law-enforcement-hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Content Section */
.law-enforcement-content-section {
  padding: 100px 0;
  position: relative;
}

.law-enforcement-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

/* Introduction Card - Special Design */
.law-enforcement-intro-card {
  background: var(--bg-secondary);
  border: 3px solid var(--border-color);
  border-radius: 30px;
  padding: 50px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.law-enforcement-intro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 50%,
    var(--brand-blue) 100%
  );
  background-size: 200% 100%;
  animation: gradientFlow 4s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.law-enforcement-intro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  border-color: var(--brand-blue);
}

.law-enforcement-intro-content {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 2;
  margin-top: 20px;
}

.law-enforcement-intro-content p {
  margin-bottom: 20px;
}

.law-enforcement-intro-content p:last-child {
  margin-bottom: 0;
}

.law-enforcement-intro-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Section Cards with Alternating Styles */
.law-enforcement-section-card {
  margin-bottom: 50px;
  position: relative;
}

/* Odd Cards - Left Border Accent */
.law-enforcement-section-card:nth-child(odd) {
  padding-left: 0;
}

.law-enforcement-section-card:nth-child(odd) .law-enforcement-card-inner {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-left: 6px solid var(--brand-blue);
  border-radius: 20px;
  padding: 45px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.law-enforcement-section-card:nth-child(odd)
  .law-enforcement-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 100%
  );
  border-radius: 20px 0 0 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.law-enforcement-section-card:nth-child(odd) .law-enforcement-card-inner:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-left-width: 8px;
}

.law-enforcement-section-card:nth-child(odd)
  .law-enforcement-card-inner:hover::before {
  opacity: 1;
}

/* Even Cards - Right Border Accent */
.law-enforcement-section-card:nth-child(even) {
  padding-right: 0;
}

.law-enforcement-section-card:nth-child(even) .law-enforcement-card-inner {
  background: linear-gradient(
    135deg,
    var(--bg-tertiary) 0%,
    var(--bg-secondary) 100%
  );
  border: 2px solid var(--border-color);
  border-right: 6px solid var(--brand-blue-teal);
  border-radius: 20px;
  padding: 45px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.law-enforcement-section-card:nth-child(even)
  .law-enforcement-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--brand-blue-teal) 0%,
    var(--brand-blue) 100%
  );
  border-radius: 0 20px 20px 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.law-enforcement-section-card:nth-child(even)
  .law-enforcement-card-inner:hover {
  transform: translateX(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-right-width: 8px;
}

.law-enforcement-section-card:nth-child(even)
  .law-enforcement-card-inner:hover::before {
  opacity: 1;
}

/* Section Number Badge */
.law-enforcement-section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 100%
  );
  color: var(--text-primary);
  border-radius: 18px;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 25px;
  box-shadow: 0 8px 30px rgba(21, 229, 232, 0.4);
  position: relative;
  overflow: hidden;
}

.law-enforcement-section-number::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%
  );
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg);
  }
}

.law-enforcement-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
  line-height: 1.3;
  position: relative;
}

.law-enforcement-section-content {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 2;
}

.law-enforcement-section-content p {
  margin-bottom: 20px;
}

.law-enforcement-section-content p:last-child {
  margin-bottom: 0;
}

.law-enforcement-section-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.law-enforcement-section-content a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.law-enforcement-section-content a:hover {
  color: var(--brand-blue-teal);
  border-bottom-color: var(--brand-blue-teal);
}

/* Info Box with Special Design */
.law-enforcement-info-box {
  background: var(--bg-tertiary);
  border: 2px solid var(--brand-blue);
  border-radius: 15px;
  padding: 35px;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}

.law-enforcement-info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 100%
  );
}

.law-enforcement-info-box::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(21, 229, 232, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.law-enforcement-info-box p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 2;
  font-size: 1.1rem;
  padding-left: 20px;
  position: relative;
  z-index: 1;
}

.law-enforcement-info-box strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Contact Info with Modern Design */
.law-enforcement-contact-info {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-tertiary) 100%
  );
  border: 3px solid var(--border-color);
  border-radius: 25px;
  padding: 50px;
  margin-top: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.law-enforcement-contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--brand-blue) 0%,
    var(--brand-blue-teal) 50%,
    var(--brand-blue) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.law-enforcement-contact-info::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(
    circle,
    rgba(21, 229, 232, 0.08) 0%,
    transparent 70%
  );
  animation: rotate 15s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.law-enforcement-contact-info p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}

.law-enforcement-contact-info a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  padding: 5px 0;
}

.law-enforcement-contact-info a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brand-blue);
  transition: width 0.3s ease;
}

.law-enforcement-contact-info a:hover {
  color: var(--brand-blue-teal);
}

.law-enforcement-contact-info a:hover::after {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .law-enforcement-hero-title {
    font-size: 3.5rem;
  }

  .law-enforcement-intro-card,
  .law-enforcement-card-inner {
    padding: 40px;
  }

  .law-enforcement-section-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  .law-enforcement-hero-section {
    padding: 120px 0 80px;
  }

  .law-enforcement-hero-title {
    font-size: 2.8rem;
  }

  .law-enforcement-hero-subtitle {
    font-size: 1.1rem;
  }

  .law-enforcement-content-section {
    padding: 60px 0;
  }

  .law-enforcement-intro-card,
  .law-enforcement-card-inner {
    padding: 30px 25px;
    border-radius: 20px;
  }

  .law-enforcement-section-card:nth-child(odd)
    .law-enforcement-card-inner:hover,
  .law-enforcement-section-card:nth-child(even)
    .law-enforcement-card-inner:hover {
    transform: translateY(-5px);
  }

  .law-enforcement-section-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .law-enforcement-section-title {
    font-size: 1.6rem;
  }

  .law-enforcement-section-content {
    font-size: 1rem;
  }

  .law-enforcement-info-box {
    padding: 25px 20px;
  }

  .law-enforcement-contact-info {
    padding: 35px 25px;
  }
}

@media (max-width: 576px) {
  .law-enforcement-hero-title {
    font-size: 2.2rem;
  }

  .law-enforcement-hero-subtitle {
    font-size: 1rem;
  }

  .law-enforcement-intro-card,
  .law-enforcement-card-inner {
    padding: 25px 20px;
  }

  .law-enforcement-section-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .law-enforcement-section-title {
    font-size: 1.4rem;
  }

  .law-enforcement-section-content {
    font-size: 0.95rem;
  }

  .law-enforcement-intro-content {
    font-size: 1rem;
  }

  .law-enforcement-info-box {
    padding: 20px 15px;
  }

  .law-enforcement-info-box p {
    padding-left: 15px;
    font-size: 1rem;
  }

  .law-enforcement-contact-info {
    padding: 30px 20px;
  }

  .law-enforcement-contact-info p {
    font-size: 1rem;
  }
}

/* Fade In Animation */
.law-enforcement-intro-card,
.law-enforcement-section-card {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.law-enforcement-intro-card {
  animation-delay: 0.2s;
}

.law-enforcement-section-card:nth-child(1) {
  animation-delay: 0.3s;
}

.law-enforcement-section-card:nth-child(2) {
  animation-delay: 0.4s;
}
.entry-header,
.page-header {
  display: none;
}

.table-striped > tbody > tr:nth-of-type(odd) > td,
.table-striped > tbody > tr:nth-of-type(odd) > th {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}
.table-striped > tbody > tr:nth-of-type(even) > td,
.table-striped > tbody > tr:nth-of-type(even) > th {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}
.table > :not(caption) > * > * {
  border-color: var(--border-color);
}
.table td {
  color: var(--text-primary);
}
textarea#comment {
  max-height: 100px !important;
}
#commentform > * {
  margin-bottom: 10px;
}
/* ========================================
   Inner Blog Content Styles
   Generic styles for blog editor content
   All styles scoped under .inner-blog
   ======================================== */

/* Typography - Headings */
.inner-blog h1,
.inner-blog h2,
.inner-blog h3,
.inner-blog h4,
.inner-blog h5,
.inner-blog h6 {
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 1rem;
}

.inner-blog h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.inner-blog h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  margin-top: 2.5rem;
}

.inner-blog h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.inner-blog h4 {
  font-size: 1.5rem;
  margin-bottom: 0.875rem;
  margin-top: 1.75rem;
}

.inner-blog h5 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.inner-blog h6 {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  margin-top: 1.25rem;
}

/* Paragraphs */
.inner-blog p {
  color: var(--text-primary);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.inner-blog p:last-child {
  margin-bottom: 0;
}

/* Links */
.inner-blog a {
  color: var(--color-blue);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.inner-blog a:hover {
  color: var(--brand-blue-teal);
  text-decoration: underline;
}

.inner-blog a:focus {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Lists */
.inner-blog ul,
.inner-blog ol {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  margin-top: 0;
  padding-left: 2rem;
}

.inner-blog ul {
  list-style-type: disc;
}

.inner-blog ol {
  list-style-type: decimal;
}

.inner-blog li {
  color: var(--text-primary);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.inner-blog li:last-child {
  margin-bottom: 0;
}

.inner-blog ul ul,
.inner-blog ol ol,
.inner-blog ul ol,
.inner-blog ol ul {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.inner-blog ul ul {
  list-style-type: circle;
}

.inner-blog ul ul ul {
  list-style-type: square;
}

/* Text Formatting */
.inner-blog strong,
.inner-blog b {
  color: var(--text-primary);
  font-weight: 700;
}

.inner-blog em,
.inner-blog i {
  font-style: italic;
  color: var(--text-primary);
}

.inner-blog u {
  text-decoration: underline;
}

.inner-blog s,
.inner-blog del {
  text-decoration: line-through;
}

.inner-blog mark {
  background-color: var(--color-blue);
  color: var(--text-primary);
  padding: 0.125rem 0.25rem;
  border-radius: 2px;
}

.inner-blog code {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--color-blue);
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  padding: 0.125rem 0.375rem;
}

.inner-blog pre {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  padding: 1.25rem;
}

.inner-blog pre code {
  background-color: transparent;
  border: none;
  padding: 0;
  font-size: inherit;
}

.inner-blog blockquote {
  border-left: 4px solid var(--color-blue);
  color: var(--text-secondary);
  font-style: italic;
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background-color: var(--bg-secondary);
  border-radius: 0 8px 8px 0;
}

.inner-blog blockquote p {
  margin-bottom: 0.5rem;
}

.inner-blog blockquote p:last-child {
  margin-bottom: 0;
}

.inner-blog blockquote cite {
  color: var(--text-secondary);
  font-size: 0.9em;
  font-style: normal;
  display: block;
  margin-top: 0.5rem;
}

/* Horizontal Rule */
.inner-blog hr {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 2rem 0;
  background: none;
}

/* Images */
.inner-blog img {
  border-radius: 8px;
  height: auto;
  max-width: 100%;
  margin: 1.5rem 0;
}

.inner-blog figure {
  margin: 1.5rem 0;
}

.inner-blog figcaption {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  text-align: center;
}

/* Tables */
.inner-blog .table-wrapper {
  margin-bottom: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.inner-blog table {
  border-collapse: collapse;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  width: 100%;
}

.inner-blog table thead {
  background-color: var(--bg-secondary);
}

.inner-blog table thead th {
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
}

.inner-blog table tbody {
  color: var(--text-primary);
}

.inner-blog table tbody td {
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.75rem 1rem;
}

.inner-blog table tbody tr:nth-of-type(odd) {
  background-color: var(--bg-tertiary);
}

.inner-blog table tbody tr:nth-of-type(even) {
  background-color: var(--bg-secondary);
}

.inner-blog table tbody tr:hover {
  background-color: var(--bg-primary);
}

/* Example Cards / Content Boxes */
.inner-blog .example-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}

.inner-blog .example-card h5 {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 0;
}

.inner-blog .example-card p {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.inner-blog .example-card p:last-child {
  margin-bottom: 0;
}

.inner-blog .examples-wrapper {
  margin-bottom: 2rem;
}

/* Notice Boxes / Alerts */
.inner-blog .notice-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
}

.inner-blog .notice-box.disclaimer {
  background-color: var(--bg-tertiary);
}

.inner-blog .notice-box strong {
  color: var(--text-primary);
}

.inner-blog .notice-box em {
  color: var(--text-primary);
}

/* Date / Meta Information */
.inner-blog .date,
.inner-blog .blog-date,
.inner-blog .post-date {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Blog Content Wrapper */
.inner-blog .blog-content,
.inner-blog .blog-body,
.inner-blog .entry-content {
  color: var(--text-primary);
}

.inner-blog .blog-content header,
.inner-blog .blog-body header {
  margin-bottom: 2rem;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .inner-blog h1 {
    font-size: 2rem;
  }

  .inner-blog h2 {
    font-size: 1.75rem;
  }

  .inner-blog h3 {
    font-size: 1.5rem;
  }

  .inner-blog h4 {
    font-size: 1.25rem;
  }

  .inner-blog h5 {
    font-size: 1.125rem;
  }

  .inner-blog h6 {
    font-size: 1rem;
  }

  .inner-blog p {
    font-size: 1rem;
  }

  .inner-blog li {
    font-size: 1rem;
  }

  .inner-blog .card-body {
    padding: 1.25rem;
  }

  .inner-blog table thead th,
  .inner-blog table tbody td {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }

  .inner-blog .example-card {
    padding: 1.25rem;
  }

  .inner-blog .notice-box {
    padding: 0.875rem 1rem;
  }
}

/* Additional Utility Classes for Blog Content */
.inner-blog .text-muted {
  color: var(--text-secondary) !important;
}

.inner-blog .text-primary {
  color: var(--text-primary) !important;
}

.inner-blog .text-secondary {
  color: var(--text-secondary) !important;
}

.inner-blog .bg-light {
  background-color: var(--bg-secondary) !important;
}

.inner-blog .bg-dark {
  background-color: var(--bg-tertiary) !important;
}

/* Remove inline styles override for better theme support */
.inner-blog [style*="color"],
.inner-blog [style*="background-color"],
.inner-blog [style*="border-color"] {
  /* Allow inline styles but ensure they work with theme */
}

.app-download ul {
  list-style-type: none;
}

.verify-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1rem;
}

.verify-header {
  text-align: center;
  margin-bottom: 3rem;
}

.verify-logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-blue),
    var(--brand-blue-teal)
  );
  border-radius: 12px;
  font-size: 2rem;
  color: var(--text-primary);
  font-weight: 700;
}

.verify-title {
  color: var(--color-blue);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.verify-subtitle {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 600;
}

.verify-description {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  text-align: center;
}

.verify-search-container {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.verify-search-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.verify-dropdown {
  position: relative;
}

.verify-dropdown-btn {
  background-color: var(--bg-tertiary);
  border: 2px solid var(--color-blue);
  border-radius: 8px;
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 150px;
  transition: all 0.3s ease;
}

.verify-dropdown-btn:hover {
  background-color: var(--bg-primary);
  border-color: var(--brand-blue-teal);
}

.verify-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  min-width: 200px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  max-height: 400px;
  overflow-y: auto;
}

.verify-dropdown-item {
  padding: 0.75rem 1.25rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid var(--border-color);
}

.verify-dropdown-item:first-child {
  background-color: var(--bg-tertiary);
  color: var(--color-blue);
}

.verify-dropdown-item:last-child {
  border-bottom: none;
}

.verify-dropdown-item:hover {
  background-color: var(--bg-tertiary);
  color: var(--color-blue);
}

.verify-search-input-wrapper {
  flex: 1;
  position: relative;
  min-width: 250px;
}

.verify-search-input {
  width: 100%;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  padding: 0.75rem 1rem 0.75rem 3rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.verify-search-input:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(21, 229, 232, 0.1);
}

.verify-search-input::placeholder {
  color: var(--text-secondary);
}

.verify-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
}

.verify-search-btn {
  background-color: var(--color-blue);
  border: none;
  border-radius: 8px;
  color: var(--text-primary);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.verify-search-btn:hover {
  background-color: var(--brand-blue-teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(21, 229, 232, 0.3);
}

.verify-search-btn:active {
  transform: translateY(0);
}

.security-tips-section {
  max-width: 1200px;
  margin: 0 auto;
}

.security-tips-title {
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.security-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.security-tip-card {
  /* background-color: var(--bg-secondary); */
  /* border: 1px solid var(--border-color); */
  border-radius: 12px;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  color: inherit;
}

.security-tip-card:hover {
  border-color: var(--color-blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(21, 229, 232, 0.2);
}

.security-tip-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--color-blue),
    var(--brand-blue-teal)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-primary);

  margin: 0 auto 1.5rem;
}

.security-tip-title {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  flex-direction: column;
  gap: 20px;
}

.security-tip-arrow {
  color: var(--color-blue);
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.security-tip-card:hover .security-tip-arrow {
  transform: translateX(4px);
}

/* Modal Styles */
.verify-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.verify-modal-overlay.show {
  display: flex;
}

.verify-modal {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.verify-modal-content {
  padding: 2.5rem;
  text-align: center;
}

.verify-modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
}

.verify-modal-icon.warning {
  background-color: var(--color-orange);
  color: var(--text-primary);
}

.verify-modal-icon.success {
  background-color: var(--color-green);
  color: var(--text-primary);
}

.verify-modal-status {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.verify-modal-query {
  font-size: 1.125rem;
  color: var(--color-orange);
  margin-bottom: 1.5rem;
  word-break: break-all;
}

.verify-modal-message {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: left;
}

.verify-modal-security-tips {
  background-color: var(--bg-tertiary);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.verify-modal-security-tips-title {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.verify-modal-security-tips-title i {
  color: var(--color-blue);
  font-size: 1.25rem;
}

.verify-modal-security-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.verify-modal-security-tips li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.verify-modal-security-tips li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-blue);
  font-size: 1.25rem;
}

.verify-modal-security-tips li:last-child {
  margin-bottom: 0;
}

.verify-modal-ok-btn {
  width: 100%;
  background-color: var(--color-blue);
  border: none;
  border-radius: 8px;
  color: var(--text-primary);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.verify-modal-ok-btn:hover {
  background-color: var(--brand-blue-teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(21, 229, 232, 0.3);
}

.verify-modal-ok-btn:active {
  transform: translateY(0);
}
.bolg-sec-between-img {
  max-width: 320px;
  margin: auto;
}
@media (max-width: 768px) {
  .verify-title {
    font-size: 2rem;
  }

  .verify-subtitle {
    font-size: 1.125rem;
  }

  .verify-search-box {
    flex-direction: column;
  }

  .verify-dropdown,
  .verify-search-input-wrapper,
  .verify-search-btn {
    width: 100%;
  }

  .security-tips-grid {
    grid-template-columns: 1fr;
  }
}
.cofinex-main-content p {
  font-size: 18px;
}
.courses-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.courses-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 992px;
  height: 772px;
  background: url(../images/grid-bg-dark.svg) no-repeat center center;
  z-index: -1;
}
.courses-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 992px;
  height: 772px;
  background: url(../images/grid-bg-dark.svg) no-repeat center center;
  transform: rotateY(180deg) scaleX(-1);
  z-index: -1;
}

[data-theme="light"] .courses-section::before,
[data-theme="light"] .courses-section::after {
  background: url(../images/grid-bg-light.svg) no-repeat center center;
}

/* Floating Background Images */
.floating-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.floating-img {
  position: absolute;
  pointer-events: none;
}

.floating-1 {
  top: 10%;
  right: 5%;
  width: 200px;
  animation: float-1 20s ease-in-out infinite;
}

.floating-2 {
  top: 50%;
  left: 5%;
  width: 180px;
  animation: float-2 25s ease-in-out infinite;
}

.floating-3 {
  top: 75%;
  right: 10%;
  width: 220px;
  animation: float-3 22s ease-in-out infinite;
}

/* Floating Animations */
@keyframes float-1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(5deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
}

@keyframes float-2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-40px, 30px) rotate(-5deg);
  }
  66% {
    transform: translate(30px, -20px) rotate(5deg);
  }
}

@keyframes float-3 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(20px, 30px) rotate(3deg);
  }
  66% {
    transform: translate(-30px, -25px) rotate(-3deg);
  }
}

/* Course Grid Cards - Home Page */
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(21, 229, 232, 0.15);
  border-color: var(--brand-blue) !important;
}

.course-filter-btn:hover {
  background: var(--brand-blue) !important;
  color: var(--text-primary) !important;
  border-color: var(--brand-blue) !important;
}

.course-filter-btn.active {
  background: var(--brand-blue) !important;
  color: var(--text-primary) !important;
  border-color: var(--brand-blue) !important;
}

/* Responsive Floating Images for Home Page */
@media (max-width: 768px) {
  .course-filter-btn {
    padding: 10px 20px !important;
    font-size: 14px !important;
  }

  .floating-1 {
    width: 120px;
    top: 8%;
    right: 2%;
  }

  .floating-2 {
    width: 100px;
    top: 48%;
    left: 2%;
  }

  .floating-3 {
    width: 130px;
    top: 72%;
    right: 5%;
  }
}
.cofinex-main-content {
  position: relative;
  z-index: 2;
  overflow: visible;
}

/* Floating Coin Images for Course Content */
.floating-coins {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.floating-coin {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.coin-1 {
  top: 15%;
  right: 8%;
  width: 60px;
  animation: float-coin-1 18s ease-in-out infinite;
}

.coin-2 {
  top: 40%;
  left: -5%;
  width: 60px;
  animation: float-coin-2 22s ease-in-out infinite;
}

.coin-3 {
  top: 65%;
  right: 6%;
  width: 60px;
  animation: float-coin-3 20s ease-in-out infinite;
}

.coin-4 {
  top: 85%;
  left: -8%;
  width: 60px;
  animation: float-coin-4 24s ease-in-out infinite;
}

/* Floating Coin Animations - Full Page Coverage */
@keyframes float-coin-1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(40px, -60px) rotate(15deg);
  }
  50% {
    transform: translate(-30px, -100px) rotate(-10deg);
  }
  75% {
    transform: translate(25px, -40px) rotate(20deg);
  }
}

@keyframes float-coin-2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-50px, 80px) rotate(-15deg);
  }
  50% {
    transform: translate(40px, 140px) rotate(12deg);
  }
  75% {
    transform: translate(-25px, 60px) rotate(-8deg);
  }
}

@keyframes float-coin-3 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(35px, 70px) rotate(10deg);
  }
  50% {
    transform: translate(-45px, 130px) rotate(-18deg);
  }
  75% {
    transform: translate(20px, 50px) rotate(5deg);
  }
}

@keyframes float-coin-4 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-40px, -50px) rotate(-12deg);
  }
  50% {
    transform: translate(50px, -90px) rotate(15deg);
  }
  75% {
    transform: translate(-30px, -30px) rotate(-20deg);
  }
}

/* Responsive Coin Sizes */
@media (max-width: 768px) {
  .coin-1 {
    width: 30px;
    top: inherit !important;
    right: 5%;
    bottom: 2px;
  }

  .coin-2 {
    width: 30px;
    top: inherit !important;
    left: 3%;
    bottom: 2px;
  }

  .coin-3 {
    width: 30px;
    top: inherit !important;
    right: 4%;
    bottom: 2px;
  }

  .coin-4 {
    width: 30px;
    top: inherit !important;
    left: 5%;
    bottom: 2px;
  }
  .cofinex-main-content p {
    font-size: 14px;
  }
  /* Reduce animation range for mobile */
  @keyframes float-coin-1 {
    0%,
    100% {
      transform: translate(0, 0) rotate(0deg);
    }
    50% {
      transform: translate(20px, -40px) rotate(10deg);
    }
  }

  @keyframes float-coin-2 {
    0%,
    100% {
      transform: translate(0, 0) rotate(0deg);
    }
    50% {
      transform: translate(-20px, 50px) rotate(-10deg);
    }
  }

  @keyframes float-coin-3 {
    0%,
    100% {
      transform: translate(0, 0) rotate(0deg);
    }
    50% {
      transform: translate(25px, 60px) rotate(12deg);
    }
  }

  @keyframes float-coin-4 {
    0%,
    100% {
      transform: translate(0, 0) rotate(0deg);
    }
    50% {
      transform: translate(-25px, -40px) rotate(-15deg);
    }
  }
}
.cofinex-description ul {
  background-color: var(--bg-secondary);
  padding: 20px;
  border-radius: 10px;
}
