/* ========== RESET & VARIABLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-color: #0055A4;
  --accent-color: #EF4135;
  --text-color: #222;
  --text-light: #666;
  --main-bg: #f9f9f9;
  --white: #fff;
  --border-color: #ddd;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
  --transition: 0.3s ease;
  --font-size: 14px;
  --text-align: left;
}

/* ========== GENERAL STYLES ========== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--main-bg);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: var(--font-size);
  text-align: var(--text-align);
}

/* ========== CONTAINER ========== */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ========== LOGO IMAGE CONTAINER ========== */
.logo-container {
  text-align: center;
  margin-bottom: 40px;
}

.logo-container img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: inline-block;
}

/* ========== LOGO TEXT (fallback) ========== */
.logo-text {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-color);
  letter-spacing: -0.5px;
}

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

/* ========== HERO SECTION ========== */
.hero {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 30px;
  background: linear-gradient(135deg, var(--main-color), var(--accent-color));
  color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  animation: slideInDown 0.6s ease;
}

.hero h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.hero p {
  font-size: 15px;
  opacity: 0.95;
  line-height: 1.6;
}

/* ========== SECTIONS ========== */
.section {
  background: var(--white);
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--main-color);
  text-align: var(--text-align);
}

.section:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.section.animate {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-color);
}

.section p {
  font-size: var(--font-size);
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 10px;
}

.section ul {
  list-style: none;
  padding-left: 0;
}

.section ul li {
  font-size: var(--font-size);
  color: var(--text-light);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.section ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
}

/* ========== BADGE ========== */
.badge {
  display: inline-block;
  background: rgba(239, 65, 53, 0.15);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* ========== BUTTONS ========== */
.cta, .btn, a.cta, a.btn {
  display: inline-block;
  padding: 14px 30px;
  background: var(--main-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 85, 164, 0.2);
  font-family: 'Poppins', sans-serif;
}

.cta:hover, .btn:hover, a.cta:hover, a.btn:hover {
  background: #003f7d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 85, 164, 0.3);
}

.cta.secondary, .btn.secondary, a.cta.secondary, a.btn.secondary {
  background: var(--accent-color);
  box-shadow: 0 4px 12px rgba(239, 65, 53, 0.2);
}

.cta.secondary:hover, .btn.secondary:hover, a.cta.secondary:hover, a.btn.secondary:hover {
  background: #c7322a;
  box-shadow: 0 6px 20px rgba(239, 65, 53, 0.3);
}

/* ========== LINKS ========== */
.links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.links a {
  font-size: 13px;
  color: var(--main-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.links a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* ========== FOOTER ========== */
.footer {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 2px solid rgba(0, 85, 164, 0.15);
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.8;
}

/* ========== HELP TEXT ========== */
.note, .help-text {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 8px;
  font-style: italic;
  opacity: 0.8;
}

.note.mt-2 {
  margin-top: 12px;
}

/* ========== BOX STYLING ========== */
.box {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
}

/* ========== ANIMATIONS ========== */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .container {
    padding: 25px 15px;
  }

  .logo-container img {
    height: 48px;
  }

  .logo-text {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .hero {
    padding: 30px 20px;
    margin-bottom: 35px;
  }

  .hero h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .hero p {
    font-size: 14px;
  }

  .section {
    padding: 20px;
    margin-bottom: 20px;
  }

  .section h2 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .section p {
    font-size: var(--font-size);
  }

  .cta, .btn, a.cta, a.btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 13px;
  }

  .links {
    gap: 15px;
    margin: 40px 0;
  }

  .links a {
    font-size: 12px;
  }

  .footer {
    font-size: 12px;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 20px 12px;
  }

  .logo-container img {
    height: 40px;
  }

  .logo-text {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .hero {
    padding: 20px 15px;
    margin-bottom: 30px;
    border-radius: 8px;
  }

  .hero h1 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .hero p {
    font-size: 13px;
  }

  .section {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
  }

  .section h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .section p, .section ul li {
    font-size: var(--font-size);
  }

  .badge {
    font-size: 10px;
    padding: 5px 10px;
  }

  .cta, .btn, a.cta, a.btn {
    padding: 10px 15px;
    font-size: 12px;
  }

  .links {
    flex-direction: column;
    gap: 10px;
  }

  .footer {
    font-size: 11px;
    margin-top: 30px;
  }
}
