/* Hero Section */
.hero {
  padding: 120px 0 100px;
  text-align: left;
  background-color: #F6F6F6;
}

.hero-inner h1 {
  font-size: 3.5rem;
  color: #023246;
  margin-bottom: 16px;
  font-weight: 900;
  line-height: 1.1;
}

.hero-inner p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  max-width: 600px;
  color: #444;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
  background-color: #287094;
  color: #fff;
}

.btn-primary:hover {
  background-color: #023246;
}

.btn-secondary {
  background-color: #023246;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #185263;
}

/* Who We Are Section */
.who-we-are-section {
  background-color: #fff;
  padding: 80px 0;
  color: #023246;
}

.who-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.who-text {
  flex: 1 1 55%;
}

.who-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #287094;
}

.who-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #444;
}

.btn-outline {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #287094;
  color: #287094;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s, color 0.3s;
}

.btn-outline:hover {
  background-color: #287094;
  color: #fff;
}

.who-image {
  flex: 1 1 40%;
  text-align: center;
}

.who-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* About Snapshot Section */
.about-snapshot {
  background-color: #F6F6F6;
  padding: 100px 0 80px;
  color: #023246;
}

.about-columns {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
}

.about-column {
  flex: 1 1 45%;
  min-width: 280px;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}

.about-column:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.icon {
  font-size: 48px;
  margin-bottom: 16px;
  color: #287094;
}

.about-column h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.learn-more-btn {
  background-color: #287094;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 16px;
  text-align: center;
}

.learn-more-btn:hover {
  background-color: #023246;
}

.flavor-text {
  margin-top: 16px;
  padding: 16px;
  background-color: #F6F6F6;
  color: #444;
  font-size: 1rem;
  border-radius: 6px;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.flavor-text.hidden {
  display: none;
}


.flavor-text {
  margin-top: 16px;
  padding: 16px;
  background-color: #F6F6F6;
  color: #444;
  font-size: 1rem;
  border-radius: 6px;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.flavor-text.hidden {
  display: none;
}


/* Updates + Newsletter Section */
.updates-newsletter-section {
  padding: 80px 0;
  background-color: #fff;
  color: #023246;
}

.updates-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.updates-feed {
  flex: 2;
}

.update-item {
  margin-bottom: 30px;
}

.update-item h3 {
  font-size: 1.25rem;
  color: #287094;
  margin-bottom: 8px;
}

.update-item p {
  font-size: 1rem;
  color: #444;
}

.update-item a {
  color: #287094;
  text-decoration: underline;
  font-weight: 600;
}

.update-item a:hover {
  color: #023246;
}
.updates-feed a.btn-outline {
  text-decoration: none !important;
}

.newsletter-box {
  flex: 1;
  background-color: #F6F6F6;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.newsletter-box h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #023246;
}

.newsletter-box p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #555;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.newsletter-form button {
  background-color: #287094;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-form button:hover,
.newsletter-form button:focus {
  background-color: #023246;
}

/* Q&A Search Section */
.search-section {
  margin-bottom: 60px;
  width: 100%;
}

.search-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.search-controls input,
.search-controls select {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  flex: 1 1 300px;
  transition: border-color 0.3s;
}

.search-controls input:focus,
.search-controls select:focus {
  border-color: #287094;
  outline: none;
}

.search-results .resource-card {
  display: block;
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s, transform 0.2s;
}

.search-results .resource-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.search-results .resource-card h3 {
  margin-bottom: 8px;
  color: #023246;
}

.search-results .resource-card p {
  color: #444;
  margin: 0;
}
.about-snapshot {
  padding: 80px 0;
  background-color: #F6F6F6;
  color: #023246;
  margin-top: 60px; /* space from the section above */
}

.about-columns {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
  align-items: flex-start; /* 🔧 Change from `stretch` to `flex-start` */
}


.about-column {
  flex: 1 1 45%;
  min-width: 260px;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.icon {
  font-size: 48px;
  margin-bottom: 16px;
  color: #287094;
}

.about-column h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.about-column p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #444;
}

.btn-about {
  display: inline-block;
  background-color: #287094;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
  text-align: center;
}

.btn-about:hover {
  background-color: #023246;
  transform: translateY(-2px);
}
