
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f4f7fb;
  color: #333;
}
header {
  background: #003366;
  color: white;
  padding: 20px 0;
}
.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 50px;
}
nav a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}
.hero {
  position: relative;
  height: 450px;
  background: url('assets/images/hero-illustration.png') no-repeat center center;
  background-size: contain;
  background-color: #e6f2ff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 12px;
  overflow: hidden;
}
.hero-overlay {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 30px;
  border-radius: 10px;
  max-width: 90%;
}
.hero h1 {
  font-size: 2.4rem;
  color: #003366;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.1rem;
  color: #003366;
  margin-bottom: 20px;
}
.cta-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  background-color: #00509e;
  color: white;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background-color: #003f7f;
}
.investment-news {
  background: #ffffff;
  padding: 30px 15px;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.investment-news h2 {
  text-align: center;
  color: #003366;
  font-size: 1.75rem;
  margin-bottom: 20px;
}
.news-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.news-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  overflow: hidden;
  width: 260px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.news-card:hover {
  transform: translateY(-4px);
}
.news-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.news-content {
  padding: 12px 15px 18px;
}
.news-content h3 {
  font-size: 1rem;
  margin: 0 0 10px;
  line-height: 1.3;
}
.news-content h3 a {
  color: #00509e;
  text-decoration: none;
}
.news-content p {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.4;
  max-height: 50px;
  overflow: hidden;
}
.footer-bar {
  background-color: #003366;
  color: white;
  width: 100%;
  font-family: 'Inter', sans-serif;
  padding: 30px 0;
  margin-top: 50px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-section {
  flex: 1;
  min-width: 250px;
}
.footer-section h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #ffffff;
}
.footer-section p {
  margin: 4px 0;
  font-size: 14px;
  color: #f0f0f0;
}
.checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #003366;
}

.checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  accent-color: #003366;
}