/* SafeMKB shared stylesheet
 * Generated from the reviewed page styles.
 * Shared rules belong here; page-specific rules live in assets/css/pages/.
 */
:root {
      --primary-blue: #1a2b47; 
      --secondary-blue: #203553; 
      --tertiary-blue: #2a4166; 
      --accent-green: #3DF5A5; 
      --accent-green-dark: #27d988; 
      --accent-green-light: rgba(61, 245, 165, 0.1); 
      --white: #ffffff;
      --light-gray: #f0f2f5;
      --text-gray: #a7b3c9;
      --dark-text: #1a2b47;
      --border-radius: 10px;
      --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      --card-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s ease;
    }

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

body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--white);
      background-color: var(--primary-blue);
      overflow-x: hidden;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

h1, h2, h3, h4 {
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: 1.5rem;
    }

h1 {
      font-size: 3.2rem;
      margin-bottom: 1.5rem;
    }

h2 {
      font-size: 2.2rem;
      margin-bottom: 1.5rem;
    }

h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

p {
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
    }

a {
      color: var(--accent-green);
      text-decoration: none;
      transition: var(--transition);
    }

a:hover {
      color: var(--accent-green-dark);
    }

.container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

nav {
      background-color: var(--primary-blue);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      background-color: rgba(26, 43, 71, 0.95);
      border-bottom: 1px solid rgba(61, 245, 165, 0.1);
    }

.nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
    }

.logo {
      display: flex;
      align-items: center;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--white);
    }

.logo i {
      font-size: 1.8rem;
      margin-right: 10px;
      color: var(--accent-green);
    }

.logo span {
      color: var(--white);
    }

.logo strong {
      color: var(--accent-green);
    }

.nav-links {
      display: flex;
      list-style: none;
    }

.nav-links li {
      margin-left: 30px;
    }

.nav-links a {
      color: var(--text-gray);
      font-weight: 500;
      position: relative;
      padding: 5px 0;
    }

.nav-links a:hover, .nav-links a.active {
      color: var(--white);
    }

.nav-links a::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--accent-green);
      transition: var(--transition);
    }

.nav-links a:hover::after, .nav-links a.active::after {
      width: 100%;
    }

.menu-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--white);
      background: transparent;
      border: 0;
      padding: 8px;
    }

.shield-bg {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 1000px;
      height: 1000px;
      background-image: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\"><path d=\"M50 0 L100 25 L100 75 L50 100 L0 75 L0 25 Z\" fill=\"none\" stroke=\"rgba(61, 245, 165, 0.03)\" stroke-width=\"1\" /></svg>");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      z-index: 0;
      opacity: 0.3;
    }

footer {
      background-color: var(--primary-blue);
      padding: 70px 0 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

.footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 50px;
    }

.footer-column h3 {
      color: var(--white);
      font-size: 1.3rem;
      margin-bottom: 25px;
      position: relative;
    }

.footer-column h3::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 40px;
      height: 2px;
      background-color: var(--accent-green);
    }

.footer-column p {
      color: var(--text-gray);
      margin-bottom: 20px;
    }

.footer-column ul {
      list-style: none;
    }

.footer-column ul li {
      margin-bottom: 15px;
    }

.footer-column ul li a {
      color: var(--text-gray);
      transition: var(--transition);
    }

.footer-column ul li a:hover {
      color: var(--accent-green);
    }

.footer-column ul li i {
      margin-right: 10px;
      color: var(--accent-green);
    }

.social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

.social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      color: var(--text-gray);
      transition: var(--transition);
    }

.social-link:hover {
      background-color: var(--accent-green);
      color: var(--primary-blue);
      transform: translateY(-3px);
    }

.copyright {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      color: var(--text-gray);
      font-size: 0.9rem;
    }

.btn:hover {
      background-color: var(--accent-green-dark);
      color: var(--dark-text);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(61, 245, 165, 0.4);
    }

.skip-link:focus { left: 12px; top: 12px; }

section {
      padding: 100px 0;
      position: relative;
    }

.section-title {
      text-align: center;
      margin-bottom: 60px;
    }

.section-title p {
      color: var(--text-gray);
      max-width: 700px;
      margin: 0 auto;
    }

.logo {
      display: flex;
      align-items: center;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--white);
      text-decoration: none;
    }

.nav-links {
      display: flex;
      list-style: none;
      gap: 30px;
    }

header::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100\" height=\"100\" viewBox=\"0 0 100 100\"><rect width=\"100\" height=\"100\" fill=\"none\"/><path d=\"M50 0 L100 25 L100 75 L50 100 L0 75 L0 25 Z\" fill=\"none\" stroke=\"rgba(61, 245, 165, 0.05)\" stroke-width=\"1\"/></svg>");
      background-size: 400px 400px;
      background-position: center;
      opacity: 0.5;
      z-index: 0;
    }

header::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 100%;
      height: 100px;
      background: linear-gradient(to top, var(--primary-blue), transparent);
      z-index: 1;
    }

.header-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

.menu-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--white);
    }

body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--white);
      background-color: var(--primary-blue);
      overflow-x: hidden;
    }

header {
      position: relative;
      padding: 100px 0;
      background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
      overflow: hidden;
      text-align: center;
    }

header p {
      font-size: 1.4rem;
      color: var(--text-gray);
      max-width: 700px;
      margin: 0 auto;
    }

.skip-link:focus {
      left: 10px;
    }

section {
      padding: 80px 0;
      position: relative;
    }

.section-title {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      z-index: 1;
    }

.section-title h2 {
      position: relative;
      display: inline-block;
    }

.section-title h2::after {
      content: "";
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--accent-green);
    }

.section-title p {
      max-width: 700px;
      margin: 20px auto 0;
      color: var(--text-gray);
    }

section.bg-secondary {
      background-color: var(--secondary-blue);
    }

.menu-toggle { background: transparent; border: 0; }

:root {
      --primary-blue: #1a2b47;
      --secondary-blue: #203553;
      --tertiary-blue: #2a4166;
      --accent-green: #3DF5A5;
      --accent-green-dark: #27d988;
      --accent-green-light: rgba(61, 245, 165, 0.1);
      --white: #ffffff;
      --light-gray: #f0f2f5;
      --text-gray: #a7b3c9;
      --dark-text: #1a2b47;
      --border-radius: 10px;
      --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      --card-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s ease;
    }
