@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary-blue: #0066cc;
  --dark-blue: #003366;
  --accent-green: #82f065;
  --text-dark: #1e293b;
  --text-light: #ffffff;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --shadow-premium: 0 20px 50px rgba(0, 51, 102, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.05);
}

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

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  padding-top: 80px;
  text-align: center;
  font-size: 15px;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.container-body {
  max-width: 800px;
  width: 90%;
  padding: 2rem;
  margin: 20px auto 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

h1, h2, h3, h4 {
  font-family: inherit;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.text-center { text-align: center; }
.hidden { display: none; }

#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: transparent;
}

section {
  padding: 60px 0;
}

.section-with-bg {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: #003366;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.section-header h2 span {
  color: var(--primary-blue);
  display: block;
  font-size: 0.8em;
  margin-top: 5px;
}
