*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #666666;
  background: #ffffff;
  margin: 0;
  padding: 0;
}

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

a {
  color: #e69e43;
  text-decoration: none;
  transition: all 0.25s ease;
}
a:hover, a:focus {
  color: #e9b16b;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", sans-serif;
  color: #333333;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.75em;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.1rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.9rem;
}

p {
  margin: 0 0 1em;
}

ul, ol {
  padding-left: 1.5em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

[class*=col-] {
  padding: 0 15px;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-8 {
    width: 66.666%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-12 {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-12 {
    width: 100%;
  }
}
.text-center {
  text-align: center;
}

.text-white {
  color: #ffffff;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-heading h2 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 0.6rem;
  position: relative;
}
.section-heading h2::after {
  content: "";
  display: block;
  height: 3px;
  background: #e69e43;
  width: 60px;
  margin: 0.4rem auto 0;
}

.section {
  padding: 60px 0;
}

.section-dark {
  background: #30302e;
  color: #ecf0f1;
}
.section-dark h2, .section-dark h3, .section-dark h4 {
  color: #ffffff;
}

.section-gray {
  background: #f5f5f5;
}

.top-bar {
  background: #30302e;
  color: #ecf0f1;
  font-size: 0.8rem;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.2rem;
}
.top-bar__nav a {
  color: #ecf0f1;
  font-size: 0.82rem;
}
.top-bar__nav a:hover {
  color: #e69e43;
}

.top-bar__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.6rem;
}
.top-bar__social a {
  color: #ecf0f1;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: all 0.25s ease;
}
.top-bar__social a:hover {
  color: #e69e43;
  border-color: #e69e43;
}

.main-nav {
  background: #e69e43;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 40px;
  width: auto;
}
.nav-logo__text {
  font-size: 1.4rem;
  font-weight: 900;
  color: #333333;
  letter-spacing: -0.02em;
}
.nav-logo__text:hover {
  color: #30302e;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333333;
  transition: all 0.25s ease;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu__item {
  position: relative;
}
.nav-menu__item > a {
  display: block;
  padding: 0.5rem 1rem;
  color: #333333;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
}
.nav-menu__item > a:hover {
  background: #333333;
  color: #e69e43;
}
.nav-menu__item.active > a {
  background: #333333;
  color: #e69e43;
}
.nav-menu__item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 100;
}
.nav-dropdown li a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: #333333;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav-dropdown li a:hover {
  background: #e69e43;
  color: #ffffff;
}

@media (max-width: 767px) {
  .nav-toggle-label {
    display: flex;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #e69e43;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-toggle:checked ~ .nav-menu {
    max-height: 600px;
  }
  .nav-menu__item > a {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.08);
  }
  .nav-dropdown li a {
    padding-left: 2.5rem;
  }
  .main-nav .container {
    flex-wrap: wrap;
    position: relative;
  }
}
.hero {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #30302e center center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
@media (min-width: 768px) {
  .hero {
    min-height: 560px;
  }
}
@media (min-width: 992px) {
  .hero {
    min-height: 640px;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 3rem 1.5rem;
  color: #ffffff;
}

.hero__headline {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .hero__headline {
    font-size: 3rem;
  }
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 10px 28px;
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease;
  line-height: 1.4;
}

.btn-primary {
  background: #e69e43;
  border-color: #e69e43;
  color: #ffffff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #e9b16b;
  border-color: #e9b16b;
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-outline:hover, .btn-outline:focus {
  background: #ffffff;
  color: #333333;
}

.btn-dark-outline {
  background: transparent;
  border-color: #333333;
  color: #333333;
}
.btn-dark-outline:hover, .btn-dark-outline:focus {
  background: #333333;
  color: #e69e43;
}

.btn-lg {
  padding: 14px 40px;
  font-size: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 576px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  text-align: center;
}
.feature-card__image {
  display: block;
  width: 100%;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.feature-card__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.feature-card__image:hover img {
  transform: scale(1.04);
}
.feature-card__title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.feature-card__desc {
  color: #666666;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.initiative-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
@media (min-width: 768px) {
  .initiative-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .initiative-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.initiative-item {
  position: relative;
  overflow: hidden;
  display: block;
}
.initiative-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.initiative-item:hover img {
  transform: scale(1.06);
}

.initiative-mask {
  position: absolute;
  inset: 0;
  background: rgba(230, 158, 67, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}
.initiative-mask p {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 0 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.initiative-mask span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
}

.initiative-item:hover .initiative-mask {
  opacity: 1;
}

.icon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 576px) {
  .icon-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.icon-box {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.icon-box__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border: 2px solid #e69e43;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e69e43;
  font-size: 1.4rem;
  transition: all 0.25s ease;
}
.icon-box:hover .icon-box__icon {
  background: #e69e43;
  color: #ffffff;
}
.icon-box__body h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.icon-box__body p {
  font-size: 0.9rem;
  margin: 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #e0e0e0;
  border: 1px solid #e0e0e0;
}
@media (min-width: 576px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.partner-item {
  background: #ffffff;
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.partner-item:hover {
  background: #f5f5f5;
}
.partner-item img {
  max-height: 60px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.25s ease;
}
.partner-item:hover img {
  filter: none;
  opacity: 1;
}

.cta-banner {
  position: relative;
  text-align: center;
  padding: 5rem 0;
  background: #30302e center center/cover no-repeat;
  color: #ffffff;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.cta-banner .container {
  position: relative;
  z-index: 1;
}
.cta-banner h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  background: #30302e;
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0;
  border-top: 1px solid #36373c;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}
.site-footer a:hover {
  color: #e69e43;
}
.site-footer p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-info {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.footer-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-info li i {
  color: #e69e43;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-social {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  gap: 0.5rem;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.25s ease;
}
.footer-social a:hover {
  border-color: #e69e43;
  color: #e69e43;
}

.footer-heading {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e69e43;
  display: inline-block;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 0.4rem;
}
.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-nav a:hover {
  color: #e69e43;
  padding-left: 4px;
}
.footer-nav a {
  transition: all 0.25s ease;
}

.subfooter {
  background: #e69e43;
  padding: 0.9rem 0;
}
.subfooter .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.subfooter p {
  margin: 0;
  color: #333333;
  font-size: 0.82rem;
  font-weight: 600;
}

.subfooter-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.2rem;
}
.subfooter-nav a {
  color: #333333;
  font-size: 0.82rem;
  font-weight: 600;
}
.subfooter-nav a:hover {
  color: #ffffff;
}

.post-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-card {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e8e8e8;
}
.post-card:last-child {
  border-bottom: none;
}

.post-card__title {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.post-card__title a {
  color: #333333;
}
.post-card__title a:hover {
  color: #e69e43;
}

.post-card__summary {
  color: #666666;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.post-meta {
  font-size: 0.82rem;
  color: #999;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.post-meta a {
  color: #e69e43;
}

.post-header {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 2rem;
}

.post-title {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.post-body {
  max-width: 780px;
}
.post-body h2, .post-body h3, .post-body h4 {
  margin-top: 2rem;
}
.post-body blockquote {
  border-left: 4px solid #e69e43;
  margin: 1.5rem 0;
  padding: 0.75rem 1.5rem;
  background: #f5f5f5;
  color: #666666;
  font-style: italic;
}
.post-body pre, .post-body code {
  font-family: "Courier New", monospace;
  font-size: 0.9em;
}
.post-body pre {
  background: #1e1e1e;
  color: #d4d4d4;
  padding: 1.25rem;
  border-radius: 4px;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.post-body code {
  background: #f5f5f5;
  padding: 0.1em 0.4em;
  border-radius: 3px;
}
.post-body pre code {
  background: none;
  padding: 0;
}
.post-body img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
}

.page-header {
  padding: 3rem 0 2rem;
  border-bottom: 3px solid #e69e43;
  margin-bottom: 2.5rem;
}

.page-title {
  font-size: 2rem;
}

.page-body {
  max-width: 900px;
  margin: 0 auto;
}

.highlight {
  background: #f8f8f8;
  border-radius: 4px;
  padding: 1rem;
  overflow-x: auto;
  font-size: 0.875rem;
}
.highlight .c, .highlight .cm, .highlight .cp, .highlight .c1, .highlight .cs {
  color: #998;
  font-style: italic;
}
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}
.highlight .k, .highlight .kc, .highlight .kd, .highlight .kn, .highlight .kp, .highlight .kr {
  color: #000;
  font-weight: bold;
}
.highlight .kt {
  color: #458;
  font-weight: bold;
}
.highlight .o, .highlight .gs, .highlight .ow {
  font-weight: bold;
}
.highlight .m, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .mo {
  color: #099;
}
.highlight .s, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .s2,
.highlight .se, .highlight .sh, .highlight .si, .highlight .sx, .highlight .sr,
.highlight .s1 {
  color: #d14;
}
.highlight .ss {
  color: #990073;
}
.highlight .na, .highlight .nc, .highlight .no, .highlight .nv, .highlight .vc,
.highlight .vg, .highlight .vi {
  color: #008080;
}
.highlight .nb, .highlight .ne {
  color: #0086b3;
}
.highlight .nf {
  color: #900;
  font-weight: bold;
}
.highlight .nn, .highlight .ni, .highlight .nt, .highlight .bp, .highlight .w {
  color: #999;
}
.highlight .gd {
  color: #000;
  background-color: #fdd;
}
.highlight .gi {
  color: #000;
  background-color: #dfd;
}
.highlight .gh, .highlight .go, .highlight .gu {
  color: #aaa;
}
.highlight .gp, .highlight .gt {
  color: #555;
}
.highlight .ge {
  font-style: italic;
}
.highlight .il {
  color: #099;
}

/*# sourceMappingURL=main.css.map */