* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: #F7FAFC;
  color: #2D3748;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
}

:focus {
  outline: 2px solid #2B6CB0;
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

::selection {
  background-color: #F6E05E;
  color: #2D3748;
}

h1, h2, h3, h4, h5, h6 {
  color: #1A4B8C;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
}

h2 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (max-width: 480px) {
  h3 {
    font-size: 1.3rem;
  }
}

h4 {
  font-size: 1.3rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

/*
// Paragraphs
p {
  margin-bottom: 1rem;
  line-height: $line-height-base;
}

// Links
a {
  color: $primary;
  text-decoration: none;
  transition: color 0.3s ease;

  &:hover {
    color: $primary-light;
  }

  &:focus-visible {
    outline: 2px solid $primary;
    outline-offset: 2px;
  }
}

// Strong text with gradient effect
strong {
  font-weight: 500;
  color: $highlight-dark;
  background: linear-gradient(120deg, $highlight-dark 1.1rem, $highlight 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

// Lists
ul, ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.5rem;
}

// Code
code {
  background-color: $light-gray;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

pre {
  background-color: $light-gray;
  padding: 1rem;
  border-radius: $border-radius;
  overflow-x: auto;
  margin-bottom: 1rem;

  code {
    background: none;
    padding: 0;
  }
}
*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

main {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0;
}

section:last-child {
  margin-bottom: 4rem;
}

.section-title {
  color: #1A4B8C;
  font-size: 2rem;
  padding: 3rem 1rem 1.5rem 1rem;
}
@media (max-width: 768px) {
  .section-title {
    text-align: center;
    padding: 2rem 1rem 1rem 1rem;
  }
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #2B6CB0;
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
}
.skip-link:focus {
  top: 6px;
}

header {
  background-color: #1A4B8C;
  color: white;
  padding: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1020;
}

.header-container {
  padding: 8px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-logo-and-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.logo {
  font-size: 26px;
  font-weight: 200;
  color: #F6E05E;
  letter-spacing: 0.01rem;
}
.logo strong {
  background: linear-gradient(120deg, var(--highlight-dark) 1.1rem, var(--highlight) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
  .logo {
    padding: 0 0.4rem;
  }
}

.logo-compact {
  display: none;
  font-size: 14px;
  font-weight: 300;
  color: #F6E05E;
  line-height: normal;
}

.accessibility-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  align-items: flex-end;
}

.text-size-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.text-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  min-width: 2rem;
  min-height: 32px;
  font-size: 0.75rem;
  transition: background-color 0.2s;
}
.text-btn:focus-visible {
  outline: 2px solid #2B6CB0;
  outline-offset: 2px;
}
.text-btn img {
  width: 0.75rem;
}
.text-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .text-btn {
    min-height: 32px;
  }
}

.language-selector {
  display: flex;
  align-items: center;
  justify-content: center;
}

.language-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  min-height: 32px;
  font-size: 0.75rem;
  transition: background-color 0.2s;
}
.language-btn:focus-visible {
  outline: 2px solid #2B6CB0;
  outline-offset: 2px;
}
.language-btn img {
  height: 1rem;
}
.language-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .language-btn {
    min-height: 32px;
    font-size: 0.8rem;
  }
}

.language-btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  padding: 1rem;
  width: 100%;
  text-align: left;
  font-size: 1.2rem;
  cursor: pointer;
  min-height: 3.5rem;
}
.mobile-menu-btn:focus-visible {
  outline: 2px solid #2B6CB0;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
}

@media (max-width: 480px) {
  .header-logo-and-navigation {
    gap: 0.5rem;
    align-items: center;
  }
  .accessibility-controls {
    align-items: center;
  }
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
}
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
}

.mobile-nav-container {
  display: none;
  background-color: #1A4B8C;
}
@media (max-width: 768px) {
  .mobile-nav-container {
    display: block;
  }
}

.mobile-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 1rem 0 0 0;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}
.mobile-nav::-webkit-scrollbar {
  height: 4px;
}
.mobile-nav::-webkit-scrollbar-track {
  background: transparent;
}
.mobile-nav::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}
.mobile-nav::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.nav-item {
  color: white;
  text-decoration: none;
  padding-top: 4px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: color 0.2s ease;
}
.nav-item:focus-visible {
  outline: 2px solid #2B6CB0;
  outline-offset: 2px;
}
.nav-item {
  border-bottom: 4px solid transparent;
}
.nav-item:hover {
  text-decoration: none;
  border-bottom-color: #38A169;
}
.nav-item:focus-visible {
  border-bottom-color: #38A169;
}

.nav-item.active {
  font-weight: 500;
  border-bottom-color: #38A169;
}

footer {
  background-color: #1A4B8C;
  color: white;
  padding: 1rem 0;
  margin-top: 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: #dfe5ec;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.footer-links a:focus-visible {
  outline: 2px solid #2B6CB0;
  outline-offset: 2px;
}
.footer-links a:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .footer-links a {
    font-size: 0.85rem;
    padding: 0.2rem 0.4rem;
  }
}
@media (max-width: 768px) {
  .footer-links {
    gap: 0.5rem;
  }
}

.copyright {
  text-align: center;
  font-size: 0.8rem;
  color: #dfe5ec;
}
@media (max-width: 768px) {
  .copyright {
    font-size: 0.75rem;
  }
}

.btn {
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn:focus-visible {
  outline: 2px solid #2B6CB0;
  outline-offset: 2px;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background-color: #38A169;
  color: white;
}
.btn-primary:hover {
  color: white;
  background-color: #48BB78;
}

.btn-secondary {
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background-color: #38A169;
  color: white;
}
.btn-secondary:hover {
  color: white;
  background-color: #48BB78;
}

.category-btn {
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background-color: #38A169;
  color: white;
}
.category-btn:hover {
  color: white;
  background-color: #48BB78;
}
.category-btn {
  border: 1px solid #1A4B8C;
  font-size: 1.1rem;
  min-height: 3rem;
}
.category-btn.active {
  background-color: #4299E1;
}

.resource-link {
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background-color: #38A169;
  color: white;
}
.resource-link:hover {
  color: white;
  background-color: #48BB78;
}
.resource-link {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  font-size: 1.1rem;
}

.featured-button {
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background-color: #38A169;
  color: white;
}
.featured-button:hover {
  color: white;
  background-color: #48BB78;
}
.featured-button {
  font-size: 1.2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  align-self: flex-start;
}
.featured-button:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-link {
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background-color: #38A169;
  color: white;
}
.video-link:hover {
  color: white;
  background-color: #48BB78;
}
.video-link {
  margin-top: auto;
  align-self: flex-end;
}

.form-button {
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background-color: #38A169;
  color: white;
}
.form-button:hover {
  color: white;
  background-color: #48BB78;
}
.form-button {
  width: 100%;
  max-width: 250px;
  margin: 1rem auto 0;
  display: block;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  min-height: 2.5rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.3rem;
  min-height: 3.5rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid #2B6CB0;
  color: #2B6CB0;
}
.btn-outline:hover {
  background-color: #2B6CB0;
  color: white;
}

.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
}
.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 2px solid #dfe5ec;
  transition: all 0.3s ease;
  padding: 1rem;
}
.card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.resource-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 2px solid #dfe5ec;
  transition: all 0.3s ease;
  padding: 1rem;
}
.resource-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.resource-card {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resource-title {
  color: #1A4B8C;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.resource-description {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.event-card {
  border-radius: 8px;
  transition: all 0.3s ease;
  padding: 1rem;
  border: 2px solid #F7FAFC;
}
.event-card:hover {
  border: 2px solid #dfe5ec;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.event-card {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.event-image {
  width: 100%;
  height: 20rem;
  object-fit: contain;
}

.event-details {
  text-align: center;
  padding: 1rem 0 0 0;
}

.event-date {
  color: #E53E3E;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 0;
}

.photo-album {
  border-radius: 8px;
  transition: all 0.3s ease;
  padding: 1rem;
  border: 2px solid #F7FAFC;
}
.photo-album:hover {
  border: 2px solid #dfe5ec;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.photo-album {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.photo-album a {
  color: #38A169;
}

.album-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 8px;
}

.album-title {
  padding-top: 1rem;
  text-align: center;
  font-size: 1.2rem;
  text-decoration: none;
}

.featured-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 2px solid #dfe5ec;
  transition: all 0.3s ease;
  padding: 1rem;
}
.featured-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.featured-card {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 1rem;
}
@media (max-width: 768px) {
  .featured-card {
    flex-direction: column;
  }
}

.featured-image {
  flex: 0 0 40%;
  min-width: 300px;
}
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .featured-image {
    flex: 0 0 200px;
    min-width: 100%;
  }
}

.featured-content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-content h2 {
  color: #1A4B8C;
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .featured-content h2 {
    font-size: 1.5rem;
  }
}
.featured-content p {
  color: #2D3748;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .featured-content p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .featured-content {
    padding: 1.5rem;
  }
}

.video-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 2px solid #dfe5ec;
  transition: all 0.3s ease;
  padding: 1rem;
}
.video-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.video-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.video-thumbnail {
  position: relative;
  padding-top: 56.25%;
}
.video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-info {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.video-info h3 {
  color: #1A4B8C;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.video-info p {
  color: #2D3748;
  margin-bottom: 1rem;
}

.benefit-card {
  padding: 2.5rem;
  border-radius: 8px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.benefit-card h3 {
  color: #1A4B8C;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.benefit-card h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #38A169;
  opacity: 0.7;
}
.benefit-card p {
  color: #2D3748;
  line-height: 1.6;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.resources-container,
.events-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.photos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .resource-card,
  .event-card,
  .photo-album {
    max-width: 100%;
  }
}
.contact-form {
  background-color: white;
  border-radius: 8px;
  padding: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #2B6CB0;
}

.form-input, .form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #A0AEC0;
  border-radius: 8px;
  font-size: 1.1rem;
  min-height: 3rem;
  background-color: white;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-input:focus-visible, .form-select:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid #2B6CB0;
  outline-offset: 2px;
}
.form-input:focus, .form-select:focus,
.form-textarea:focus {
  border-color: #2B6CB0;
  box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
}
.form-input:invalid, .form-select:invalid,
.form-textarea:invalid {
  border-color: #E53E3E;
}
.form-input:valid, .form-select:valid,
.form-textarea:valid {
  border-color: #38A169;
}
@media (max-width: 768px) {
  .form-input, .form-select,
  .form-textarea {
    font-size: 16px;
  }
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-error {
  color: #E53E3E;
  font-size: 0.9rem;
  margin-top: 0.25rem;
  display: block;
}

.form-success {
  color: #38A169;
  font-size: 0.9rem;
  margin-top: 0.25rem;
  display: block;
}

.form-row {
  display: flex;
  gap: 1rem;
}
.form-row .form-group {
  flex: 1;
}
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

.form-checkbox,
.form-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.form-checkbox input[type=checkbox],
.form-checkbox input[type=radio],
.form-radio input[type=checkbox],
.form-radio input[type=radio] {
  width: auto;
  margin: 0;
  min-height: auto;
}
.form-checkbox label,
.form-radio label {
  margin: 0;
  font-weight: normal;
  cursor: pointer;
}

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  appearance: none;
}

.form-help {
  color: #A0AEC0;
  font-size: 0.9rem;
  margin-top: 0.25rem;
  display: block;
}

.form-required {
  color: #E53E3E;
}
.form-required::after {
  content: " *";
}

.form-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #dfe5ec;
}
.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section-title {
  color: #1A4B8C;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-section {
    height: 300px;
  }
}

.darkened::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 800px;
}
.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: white;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}
.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .hero-content p {
    font-size: 1.2rem;
  }
}

.hero-minimal {
  height: 200px;
}
.hero-minimal .hero-content h1 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .hero-minimal .hero-content h1 {
    font-size: 2rem;
  }
}
.hero-minimal .hero-content p {
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .hero-minimal .hero-content p {
    font-size: 1rem;
  }
}

.hero-large {
  height: 500px;
}
.hero-large .hero-content h1 {
  font-size: 5rem;
}
@media (max-width: 768px) {
  .hero-large .hero-content h1 {
    font-size: 2.5rem;
  }
}
.hero-large .hero-content p {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .hero-large .hero-content p {
    font-size: 1.3rem;
  }
}

.hero-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(43, 108, 176, 0.8), rgba(229, 62, 62, 0.6));
  z-index: 0;
}

.hero-parallax {
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .hero-parallax {
    background-attachment: scroll;
  }
}

.featured-section {
  padding-top: 2rem;
  background-color: #F7FAFC;
}

.benefits-section {
  border-radius: 8px;
}
.benefits-section h2 {
  font-size: 1.8rem;
  text-align: center;
}

.category-section {
  margin-bottom: 3rem;
}
.category-section h2 {
  color: #1A4B8C;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.resource-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.text-container {
  padding: 0 1rem;
}

.section-spacing--small {
  padding: 1rem 0;
}
.section-spacing--medium {
  padding: 2rem 0;
}
.section-spacing--large {
  padding: 4rem 0;
}

.section-bg--light {
  background-color: #F7FAFC;
}
.section-bg--white {
  background-color: white;
}
.section-bg--primary {
  background-color: #2B6CB0;
  color: white;
}
.section-bg--primary h1, .section-bg--primary h2, .section-bg--primary h3, .section-bg--primary h4, .section-bg--primary h5, .section-bg--primary h6 {
  color: white;
}
.section-bg--secondary {
  background-color: #E53E3E;
  color: white;
}
.section-bg--secondary h1, .section-bg--secondary h2, .section-bg--secondary h3, .section-bg--secondary h4, .section-bg--secondary h5, .section-bg--secondary h6 {
  color: white;
}

@media (max-width: 480px) {
  .mobile-hidden {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
  .mobile-text-center {
    text-align: center !important;
  }
  .mobile-full-width {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .tablet-hidden {
    display: none !important;
  }
  .tablet-only {
    display: block !important;
  }
  .tablet-text-center {
    text-align: center !important;
  }
  .tablet-full-width {
    width: 100% !important;
  }
}
@media (min-width: 1024px) {
  .desktop-hidden {
    display: none !important;
  }
  .desktop-only {
    display: block !important;
  }
  .desktop-text-center {
    text-align: center !important;
  }
}
.spacing-responsive {
  padding: 1rem;
}
@media (max-width: 768px) {
  .spacing-responsive {
    padding: 0.75rem;
  }
}
@media (max-width: 480px) {
  .spacing-responsive {
    padding: 0.5rem;
  }
}

.text-responsive {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .text-responsive {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .text-responsive {
    font-size: 0.8rem;
  }
}

.grid-responsive {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .grid-responsive {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .grid-responsive {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.flex-responsive {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 768px) {
  .flex-responsive {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.container-responsive {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container-responsive {
    padding: 0 1rem;
  }
}
@media (max-width: 480px) {
  .container-responsive {
    padding: 0 0.5rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #2B6CB0;
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 1030;
  border-radius: 8px;
}
.skip-link:focus {
  top: 6px;
}

.focus-visible:focus-visible {
  outline: 2px solid #2B6CB0;
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  :root {
    --primary: #0000FF;
    --secondary: #FF0000;
    --accent: #008000;
    --light: #FFFFFF;
    --dark: #000000;
  }
  .text-btn,
  .language-btn,
  .nav-item,
  .form-button,
  .btn {
    border: 2px solid white;
  }
  .resource-card,
  .event-card,
  .photo-album,
  .card {
    border: 2px solid black;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
.high-contrast {
  color: #2D3748;
  background-color: #F7FAFC;
}
.high-contrast a {
  color: #1A4B8C;
  text-decoration: underline;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.leading-tight {
  line-height: 1.25;
}

.leading-normal {
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-loose {
  line-height: 2;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.m-0 {
  margin: 0;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 0.75rem;
}

.m-4 {
  margin: 1rem;
}

.m-5 {
  margin: 1.25rem;
}

.m-6 {
  margin: 1.5rem;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-primary {
  color: #2B6CB0;
}

.text-secondary {
  color: #E53E3E;
}

.text-accent {
  color: #38A169;
}

.text-dark {
  color: #2D3748;
}

.text-light {
  color: #F7FAFC;
}

.text-white {
  color: white;
}

.bg-primary {
  background-color: #2B6CB0;
}

.bg-secondary {
  background-color: #E53E3E;
}

.bg-accent {
  background-color: #38A169;
}

.bg-light {
  background-color: #F7FAFC;
}

.bg-white {
  background-color: white;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideInDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scaleOut {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

.animate-fade-out {
  animation: fadeOut 0.5s ease-in-out;
}

.animate-slide-in-up {
  animation: slideInUp 0.5s ease-out;
}

.animate-slide-in-down {
  animation: slideInDown 0.5s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.5s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.5s ease-out;
}

.animate-scale-in {
  animation: scaleIn 0.3s ease-out;
}

.animate-scale-out {
  animation: scaleOut 0.3s ease-out;
}

.animate-bounce {
  animation: bounce 1s infinite;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

.animate-shake {
  animation: shake 0.5s ease-in-out;
}

.animate-delay-100 {
  animation-delay: 0.1s;
}

.animate-delay-200 {
  animation-delay: 0.2s;
}

.animate-delay-300 {
  animation-delay: 0.3s;
}

.animate-delay-500 {
  animation-delay: 0.5s;
}

.animate-delay-1000 {
  animation-delay: 1s;
}

.animate-duration-100 {
  animation-duration: 0.1s;
}

.animate-duration-200 {
  animation-duration: 0.2s;
}

.animate-duration-300 {
  animation-duration: 0.3s;
}

.animate-duration-500 {
  animation-duration: 0.5s;
}

.animate-duration-1000 {
  animation-duration: 1s;
}

.hover-lift {
  transition: transform 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-5px);
}

.hover-scale {
  transition: transform 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
}

.hover-rotate {
  transition: transform 0.3s ease;
}
.hover-rotate:hover {
  transform: rotate(5deg);
}

@media (prefers-reduced-motion: reduce) {
  .animate-fade-in,
  .animate-fade-out,
  .animate-slide-in-up,
  .animate-slide-in-down,
  .animate-slide-in-left,
  .animate-slide-in-right,
  .animate-scale-in,
  .animate-scale-out,
  .animate-bounce,
  .animate-pulse,
  .animate-shake,
  .hover-lift,
  .hover-scale,
  .hover-rotate {
    animation: none !important;
    transition: none !important;
  }
}
:root {
  --primary: #2B6CB0;
  --primary-light: #4299E1;
  --primary-dark: #1A4B8C;
  --secondary: #E53E3E;
  --secondary-light: #FC8181;
  --secondary-dark: #C53030;
  --light: #F7FAFC;
  --light-gray: #dfe5ec;
  --medium-gray: #A0AEC0;
  --dark: #2D3748;
  --accent: #38A169;
  --accent-light: #48BB78;
  --accent-dark: #2F855A;
  --highlight: #F6E05E;
  --highlight-light: #FAF089;
  --highlight-dark: #D69E2E;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --spacing-unit: 1rem;
  --border-radius: 8px;
}