@charset "UTF-8";
html, body {
  padding: 0;
  margin: 0;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #404040;
  min-width: 380px;
  line-height: 1.6;
  background-color: #fff;
  scroll-behavior: smooth; }

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

hr {
  height: 1px;
  border: 0;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 50px 0;
  position: relative; }
  hr::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background-color: #1d78b5;
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%); }

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #333333;
  margin-top: 0;
  animation: fadeIn 0.8s ease-out forwards; }

h1 {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 3em;
  letter-spacing: -0.5px; }

h2 {
  font-size: 2.5em;
  margin: 0 0 30px 0;
  text-align: center;
  position: relative;
  padding-bottom: 15px; }
  h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #1d78b5;
    border-radius: 3px; }

h3 {
  font-size: 1.8em;
  margin: 20px 0 20px 0; }

p {
  font-size: 1.1em;
  line-height: 1.7em;
  color: #404040;
  margin-bottom: 1.5em;
  animation: fadeIn 1s ease-out forwards; }

a {
  color: #1d78b5;
  text-decoration: none;
  transition: color 0.3s ease; }
  a:hover {
    color: #165b89; }

nav {
  padding: 20px 0; }
  nav svg {
    fill: #fff;
    height: 35px;
    transition: transform 0.3s ease; }
    nav svg:hover {
      transform: scale(1.05); }

section {
  padding: 80px 0;
  position: relative; }

form {
  display: flex;
  max-width: 500px;
  margin: 0 auto; }
  form input[type="text"] {
    flex-grow: 1;
    flex-shrink: 1;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 15px 25px;
    font-size: 1em; }
    form input[type="text"], form input[type="text"]:focus {
      border-top-left-radius: 30px;
      border-bottom-left-radius: 30px; }
    form input[type="text"]:focus {
      box-shadow: 0 0 0 3px rgba(29, 120, 181, 0.2);
      border-color: #1d78b5;
      outline: none; }
  form input[type="submit"] {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(29, 120, 181, 0.3); }
    form input[type="submit"]:hover {
      background: #176192;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(29, 120, 181, 0.4); }

.button a, input[type="submit"], input[type="text"] {
  border: 0;
  padding: 15px 40px;
  box-sizing: border-box;
  font-size: 1em;
  font-weight: 400; }

.button a, input[type="submit"] {
  background: #1d78b5;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9em; }

.button a {
  display: inline-block;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(29, 120, 181, 0.3); }
  .button a:hover {
    background: #176192;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29, 120, 181, 0.4); }

ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
  line-height: 1.7; }
  ul li, ol li {
    margin-bottom: 0.5em;
    color: #404040; }

blockquote:not(.testimonial) {
  border-left: 4px solid #1d78b5;
  padding: 10px 20px;
  margin: 20px 0;
  background-color: rgba(29, 120, 181, 0.05); }
  blockquote:not(.testimonial) p {
    font-style: italic;
    color: #333333; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); }
  table th, table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
  table th {
    background-color: #1d78b5;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 1px; }
  table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02); }
  table tr:hover {
    background-color: rgba(29, 120, 181, 0.05); }

.image-container {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 30px 0; }
  .image-container img {
    display: block;
    transition: transform 0.5s ease; }
    .image-container img:hover {
      transform: scale(1.05); }

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 50px 30px;
  box-sizing: border-box; }

header {
  padding-bottom: 50px;
  background: linear-gradient(to right, #f9f9f9, rgba(29, 120, 181, 0.1));
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
  @media (min-width: 768px) {
    header .container {
      display: flex; }
    header .column {
      flex: 1; }
      header .column img {
        max-width: none;
        width: 120%;
        border-radius: 8px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        transition: transform 0.3s ease; }
        header .column img:hover {
          transform: translateY(-5px); }
      header .column:first-child {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 50px; } }
  header img {
    margin: 100px auto 0 auto;
    display: block;
    max-width: 100%; }
  header h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333333;
    font-family: "Raleway", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
  header p {
    font-size: 1.4rem;
    color: #404040;
    line-height: 1.5; }

header .container, nav .container {
  padding-top: 0;
  padding-bottom: 0; }

nav {
  background-color: #333333;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
  @media (min-width: 768px) {
    nav {
      position: sticky;
      top: 0;
      z-index: 1000; } }
  nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease; }
    nav a:hover {
      color: #f8b400; }
  nav .nav-links {
    display: flex;
    align-items: center; }
    @media (max-width: 768px) {
      nav .nav-links {
        display: none; } }
    nav .nav-links a {
      margin-left: 25px;
      position: relative; }
      nav .nav-links a:not(.button)::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: #f8b400;
        transition: width 0.3s ease; }
      nav .nav-links a:not(.button):hover::after {
        width: 100%; }
      nav .nav-links a.button {
        background-color: #f8b400;
        color: #333333;
        padding: 8px 20px;
        border-radius: 30px;
        font-weight: bold;
        transition: all 0.3s ease; }
        nav .nav-links a.button:hover {
          background-color: #c58f00;
          transform: translateY(-2px); }

.social-icons {
  margin-top: 15px; }
  .social-icons a {
    display: inline-block;
    margin-right: 12px;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    transition: all 0.3s ease; }
    .social-icons a i {
      color: #AAAAAA;
      font-size: 16px;
      transition: all 0.3s ease; }
    .social-icons a:hover {
      background-color: #1d78b5;
      transform: translateY(-3px); }
      .social-icons a:hover i {
        color: white; }

.donate {
  text-align: center; }

.thirds {
  margin: 90px -15px 0 -15px;
  padding: 0;
  list-style: none; }
  @media (min-width: 768px) {
    .thirds {
      display: flex; } }
  .thirds li {
    box-sizing: border-box;
    margin: 70px 0px;
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 0 30px 25px 30px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center; }
    .thirds li:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); }
    @media (min-width: 768px) {
      .thirds li {
        width: 33%;
        margin: 0 15px; } }
    .thirds li .image {
      display: inline-block;
      line-height: 0;
      background: #f9f9f9;
      margin-top: -40px;
      padding: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      border-radius: 50%;
      transition: transform 0.3s ease; }
      .thirds li .image:hover {
        transform: rotate(5deg); }
    .thirds li h3 {
      font-family: "Raleway", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      color: #1d78b5;
      font-size: 1.8rem;
      margin-top: 20px; }
    .thirds li p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #404040; }
    .thirds li svg {
      fill: #1d78b5;
      padding: 5px; }

blockquote {
  padding: 0;
  margin: 120px 0 70px 0;
  position: relative; }
  blockquote .quote {
    padding: 40px 50px;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
    font-size: 1.2em;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    color: #404040;
    font-style: italic;
    background-color: white;
    border-left: 5px solid #f8b400; }
    blockquote .quote::before {
      content: "\201C";
      font-family: Georgia, serif;
      font-size: 90px;
      font-weight: bold;
      color: rgba(29, 120, 181, 0.3);
      position: absolute;
      left: 0;
      top: -15px;
      text-align: center;
      width: 100%; }
    blockquote .quote::after {
      content: "";
      position: absolute;
      bottom: -30px;
      left: 50%;
      margin-left: -30px;
      border-width: 30px 30px 0;
      border-style: solid;
      border-color: #ffffff transparent;
      display: block;
      width: 0; }
  blockquote .meta {
    text-align: center;
    vertical-align: middle;
    position: relative;
    z-index: 999;
    top: 35px; }
    blockquote .meta .author {
      display: inline-block;
      vertical-align: middle;
      margin: 0 0 0 10px;
      font-weight: 600;
      color: #333333; }
  blockquote .image {
    display: inline-block;
    width: 70px;
    margin: 0 0 0 15px;
    vertical-align: middle; }
    blockquote .image img {
      max-width: 100%;
      border-radius: 50%;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border: 3px solid white; }

.newsletter {
  padding: 100px 0;
  background-color: #f9f9f9;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); }

footer {
  background: #333333;
  padding: 60px 0 40px;
  border-radius: 10px 10px 0 0; }
  footer, footer a {
    color: #AAAAAA; }
  footer a {
    transition: all 0.3s ease; }
    footer a:hover {
      color: #fff;
      text-decoration: underline; }
      footer a:hover svg {
        fill: #fff;
        transform: translateY(-3px); }
  footer p {
    margin: 0;
    padding: 0;
    line-height: 1.7; }
  footer p, footer address {
    font-size: 1rem; }
  footer svg {
    fill: #AAAAAA;
    height: 20px;
    position: relative;
    top: 4px;
    transition: all 0.3s ease; }
  footer a {
    text-decoration: none; }
  @media (min-width: 768px) {
    footer .container {
      display: flex;
      align-items: flex-start; } }
  footer .container div {
    margin: 20px 0;
    box-sizing: content-box;
    padding: 0 25px; }
    @media (min-width: 768px) {
      footer .container div {
        width: 33%;
        margin: 0; } }

.quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0; }
  .quick-links ul li {
    margin-bottom: 10px; }
    .quick-links ul li a {
      position: relative;
      padding-left: 15px; }
      .quick-links ul li a::before {
        content: "→";
        position: absolute;
        left: 0;
        transition: transform 0.3s ease; }
      .quick-links ul li a:hover::before {
        transform: translateX(3px); }

footer h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative; }
  footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #f8b400; }

.copyright {
  padding: 15px 0;
  margin: 0;
  background: #262626;
  text-align: center;
  font-size: .9em; }
  .copyright a {
    color: #AAAAAA;
    text-decoration: none;
    transition: color 0.3s ease; }
    .copyright a:hover {
      color: #fff; }

.posts {
  margin: 30px -20px; }
  @media (min-width: 768px) {
    .posts {
      display: flex; } }
  .posts .post {
    flex: 1;
    border: none;
    margin: 0 0 50px 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease; }
    .posts .post:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); }
    @media (min-width: 768px) {
      .posts .post {
        margin: 0 20px; } }
    .posts .post .image {
      height: 200px;
      background-position: center;
      background-size: cover;
      border-top-right-radius: 10px;
      border-top-left-radius: 10px;
      position: relative; }
      .posts .post .image::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 30%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent); }
    .posts .post .post-content {
      padding: 25px; }
    .posts .post .date {
      color: #1d78b5;
      font-weight: 600;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px; }
    .posts .post h3 {
      font-size: 1.5rem;
      margin: 10px 0;
      font-family: "Raleway", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
      .posts .post h3 a {
        color: #333333;
        text-decoration: none;
        transition: color 0.3s ease; }
        .posts .post h3 a:hover {
          color: #1d78b5; }
    .posts .post p {
      font-size: 1.1rem;
      color: #404040;
      line-height: 1.6; }

@media (min-width: 768px) {
  .columns {
    display: flex;
    margin: 30px -30px;
    align-items: center; }
    .columns > div {
      flex: 1;
      padding: 0 30px; }
    .columns img {
      border-radius: 10px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease; }
      .columns img:hover {
        transform: scale(1.03); } }
.columns h2 {
  text-align: left;
  color: #1d78b5;
  font-family: "Raleway", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px; }
.columns p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #404040;
  margin-bottom: 15px; }

.darker {
  background: #f9f9f9;
  padding: 80px 0; }
  .darker h2 {
    text-align: center;
    color: #1d78b5;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: "Raleway", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }

.button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #1d78b5;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(29, 120, 181, 0.3); }
  .button:hover {
    background-color: #165b89;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(29, 120, 181, 0.4); }

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.animated {
  animation: fadeInUp 0.6s ease-out forwards; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
