/* Modern Reset & Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #333333;
  background-color: #fcfdfe;
  line-height: 1.6;
}

/* Structural Components */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 60px 24px;
}

/* Navigation Bar */
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #eef2f5;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 800;
  color: #172F69;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #555555;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #172F69;
}

/* Premium Hero / Quote Header */
.hero-quote {
  background-color: #172F69;
  color: #ffffff;
  padding: 50px 0;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 30px;
}

@media(min-width: 768px) {
  .quote-grid {
    grid-template-columns: 200px 1fr;
  }
}

.logo-box {
  display: flex;
  justify-content: center;
  background-color: #000000;
  padding: 15px;
  border-radius: 6px;
}

.hero-logo {
  height: auto;
  max-height: 90px;
  max-width: 100%;
  object-fit: contain;
}

.quote-phrase {
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: #f8fff0;
}

.quote-author {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a4b7e1;
}

/* Sub-Hero Banner */
.hero-banner {
  background-color: #f0f4f8;
  padding: 50px 0;
  text-align: center;
  border-bottom: 1px solid #e2ebf3;
}

.hero-banner h1 {
  font-size: 32px;
  color: #172F69;
  font-weight: 700;
}

/* Typography & Structural Heading Blocks */
.section-heading-block {
  background-color: #172F69;
  color: #ffffff;
  padding: 30px 0;
  margin-top: 20px;
}

.section-heading-block h2 {
  font-size: 26px;
  font-weight: 600;
}

/* Modern Layout Grids */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

/* Card Styling */
.card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(23, 47, 105, 0.04);
  border: 1px solid #eef2f6;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(23, 47, 105, 0.08);
}

.card h2 {
  font-size: 22px;
  color: #172F69;
  margin-bottom: 16px;
  font-weight: 700;
  border-bottom: 2px solid #f0f4f8;
  padding-bottom: 10px;
}

.card h3 {
  font-size: 16px;
  color: #172F69;
  margin: 20px 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lead-text {
  font-weight: 700;
  color: #444;
  margin-bottom: 12px;
}

.tagline {
  font-style: italic;
  font-weight: 600;
  color: #666;
  margin-bottom: 15px;
}

/* Custom Styled Lists */
.styled-list {
  list-style: none;
  margin: 15px 0;
}

.styled-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.styled-list li::before {
  content: "•";
  color: #172F69;
  font-weight: bold;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: -2px;
}

/* Links & Buttons Layout */
a {
  color: #172F69;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

.btn-link {
  display: inline-block;
  margin-top: 15px;
  font-weight: 700;
  color: #172F69;
}

.linkedin-btn {
  display: inline-block;
  margin-top: 10px;
  background: #172F69;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}

.linkedin-btn:hover {
  background: #234494;
  text-decoration: none;
}

/* News Section Specifics */
.news-list {
  list-style: none;
}

.news-list li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f4f8;
}

.news-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-list a {
  font-size: 16px;
  line-height: 1.4;
  display: block;
}

/* Profiles & Dividers */
.divider {
  border: 0;
  height: 1px;
  background: #e2ebf3;
  margin: 40px 0;
}

.profile-box {
  scroll-margin-top: 90px; /* Aligns target cleanly when using inner anchor jumps */
}

.profile-box p {
  margin-bottom: 8px;
}

/* Footer Section */
.footer {
  background-color: #172F69;
  color: #ffffff;
  padding: 25px 0;
  margin-top: 60px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-link {
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 1px;
}

.copyright {
  font-size: 14px;
  opacity: 0.8;
}