body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
  }
  a{
    color: inherit;
    text-decoration: none;
  }
  .header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    transition: background 0.3s ease;
    z-index: 1000;
  }
  .header.scrolled {
    background: rgba(0, 0, 0, 0.8);
  }
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  .header__logo {
    color: white;
    font-weight: bold;
    font-size: 24px;
  }
  .header__nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
  }
  .header__nav a {
    color: white;
    text-decoration: none;
  }
  .header__burger {
    display: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
  }
  
  .hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
  }
  .hero__overlay {
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
  }
  .hero__title {
    font-size: 48px;
    margin: 10px 0;
  }
  .hero__subtitle {
    letter-spacing: 3px;
  }
  .highlight {
    color: yellow;
  }
  .hero__buttons {
    margin-top: 20px;
  }
  .btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    margin: 0 10px;
    text-decoration: none;
  }
  .btn--yellow {
    background: yellow;
    color: black;
  }
  .btn--transparent {
    border: 1px solid yellow;
    color: white;
  }
  @media (max-width: 768px) {
    .header__nav ul {
      flex-direction: column;
      background: rgba(0, 0, 0, 0.9);
      position: absolute;
      top: 70px;
      right: 0;
      width: 200px;
      padding: 10px;
      display: none;
    }
    .header__nav.active ul {
      display: flex;
    }
    .header__burger {
      display: block;
    }
  }
  .welcome {
    padding: 0px 0px;
    background-color: #fff;
  }
  
  .welcome__container {
    display: flex;

    padding: 0;
    
    margin: 0 auto;
  }
  
  .welcome__image {
    flex: 1 1 50%;
    max-width: 50%;
  }
  
  .welcome__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .welcome__content {
    flex: 1 1 50%;
    max-width: 50%;
    display: flex
;
    padding: 40px;
    flex-direction: column;
    justify-content: center;
}
  
  .welcome__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .welcome__highlight {
    color: #f9c900;
  }
  
  .welcome__text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
  }
  
  .welcome__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .welcome__item {
    margin-bottom: 10px;
    font-size: 16px;
    color: #666;
    display: flex;
    align-items: center;
  }
  
  .welcome__icon {
    color: #f9c900;
    margin-right: 10px;
    font-weight: bold;
  }
  .stats {
    padding: 90px 20px;
    background-color: #fff;
  
  }
  
  .stats__container {
    display: flex;

    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .stats__item {
    flex: 1 1 25%;
    padding: 30px 10px;
    border-right: 1px solid #eee;
  }
  
  .stats__item:last-child {
    border-right: none;
  }
  
  .stats__icon {
    font-size: 40px;
    color: #f9c900;
    margin-bottom: 10px;
  }
  
  .stats__number {
    font-size: 28px;
    font-weight: 700;
    color: #000;
  }
  
  .stats__label {
    font-size: 14px;
    text-transform: uppercase;
    color: #444;
    margin-top: 5px;
    letter-spacing: 0.05em;
  }
  @media (max-width: 768px) {
    .stats__item {
      flex: 1 1 50%;
      border-right: none;
      border-bottom: 1px solid #eee;
    }
  
    .stats__item:nth-child(2n) {
      border-right: none;
    }
  
    .stats__item:last-child {
      border-bottom: none;
    }
  }
  
  @media (max-width: 480px) {
    .stats__item {
      flex: 1 1 100%;
      border-bottom: 1px solid #eee;
    }
  }
  .services {
    padding: 90px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .services__header {
    margin-bottom: 40px;
  }
  
  .services__subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ccc;
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .services__title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
  }
  
  .services__text {
    color: #888;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .services__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
  }
  
  .services__item {
    max-width: 220px;
  }
  
  .services__icon {
    font-size: 48px;
    color: #f7c200; /* золотой цвет */
    margin-bottom: 20px;
  }
  
  .services__name {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
  }
  
  .services__desc {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .services__item {
      max-width: 100%;
      width: 80%;
    }
  }
  .sermons {
    padding: 90px 20px;
    text-align: center;
    background: #f8f8f8;
  }
  
  .sermons__header {
    margin-bottom: 40px;
  }
  
  .sermons__subtitle {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 10px;
  }
  
  .sermons__title {
    font-size: 32px;
    color: #222;
    margin-bottom: 10px;
  }
  
  .sermons__desc {
    max-width: 600px;
    margin: 0 auto;
    color: #777;
  }
  
  .sermons__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .sermons__card {
    width: 300px;
    background: #fff;
  }
  
  .sermons__image {
    height: 360px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .sermons__overlay {
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    transition: 0.3s;
  }
  
  .sermons__pastor {
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .sermons__pastor span {
    font-family: 'Cursive', sans-serif;
    font-size: 18px;
    display: block;
  }
  
  .sermons__buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .sermons__btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.2s;
  }
  
  .sermons__btn i {
    margin-right: 6px;
  }
  
  .sermons__btn:hover {
    background: #f7c200;
    color: #000;
  }
  
  .sermons__name {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-top: 10px;
  }
  
  .sermons__date {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
  }
  .container{
    max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  }
  .events {
    padding: 0px 0px;
margin: 50px 0;
    text-align: center;
  }
  
  .events__header {
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #777;
    margin-bottom: 40px;
    padding: 90px 0;
  }
  
  .events__subtitle {
    text-transform: uppercase;
    font-size: 12px;
    color: #fffcfc;
    letter-spacing: 2px;
  }
  
  .events__title {
    font-size: 32px;
    color: #ffffff;
  }
  
  .events__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
margin-top: -90px;
    gap: 30px;
    padding:  15px;
    justify-content: center;
  }
  
  .events__item

   {
      background: #fff;
      /* width: 340px; */
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
      display: flex
  ;
      /* flex-direction: column; */
  }
  
  .events__image {
    height: 100%;
    width: 250px;
    background-size: cover;
    background-position: center;
  }
  
  .events__info {
    padding: 20px;
    text-align: left;
    position: relative;
  }
  
  .events__time {
    position: absolute;
    top: -15px;
    left: 15px;
    background: #f7c200;
    color: #000;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
  }
  
  .events__name {
    font-size: 16px;
    font-weight: 600;
    margin: 25px 0 10px;
    color: #222;
  }
  
  .events__pastor {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
  }
  
  .events__pastor span {
    color: #f7c200;
    font-weight: 500;
  }
  
  .events__address {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
  }
  
  .events__btn {
    display: inline-block;
    background: #f7c200;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
  }
  
  .events__btn:hover {
    background: #000;
    color: #fff;
  }
  .donate {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
  }
  
  .donate__header {
    margin-bottom: 40px;
  }
  
  .donate__subtitle {
    text-transform: uppercase;
    font-size: 12px;
    color: #999;
    letter-spacing: 2px;
  }
  
  .donate__title {
    font-size: 32px;
    color: #222;
    margin: 10px 0;
  }
  
  .donate__desc {
    font-size: 14px;
    color: #777;
    margin-top: 5px;
  }
  
  .donate__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .donate__card {
    width: 250px;
    text-align: left;
  }
  
  .donate__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
  }
  
  .donate__name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .donate__progress {
    height: 4px;
    background: #eee;
    position: relative;
    margin-bottom: 5px;
  }
  
  .donate__progress-bar {
    height: 4px;
    background: #f7c200;
  }
  
  .donate__amount {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .donate__amount strong {
    color: #000;
  }
  
  .donate__amount span {
    color: #999;
  }
  
  .donate__text {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
  }
  
  .donate__btn {
    display: inline-block;
    background: #f7c200;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
    box-shadow: 0 5px 10px rgba(0,0,0,0.06);
  }
  
  .donate__btn:hover {
    background: #000;
    color: #fff;
  }
  .donation-progress {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px;
    z-index: 2;
    position: relative;
    margin: 50px auto -30px;
    display: block;
    max-width: 700px;
    text-align: center;
}
  .donation-progress__box {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .donation-progress__title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .donation-progress__amount {
    color: #f7c200;
  }
  
  .donation-progress__text {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 25px;
  }
  
  .donation-progress__btn {
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .donation-progress__btn:hover {
    background: #f7c200;
    color: #000;
  }
  
  .bible-quote {

    padding: 80px 20px;
    text-align: center;
    color: #fff;
    position: relative;
  }
  
  .bible-quote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
  }
  
  .bible-quote__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
  }
  .bible-quote__icon {
    margin-bottom: 20px;
    display: inline-block;
  }
  .bible-quote i {

 font-size: 120px;
   color: #f7c200;
  }
  
  .bible-quote__title {
    font-family: 'Georgia', serif;
    font-size: 28px;
    font-style: italic;
    margin-bottom: 20px;
  }
  
  .bible-quote__quote {
    color: #f7c200;
    font-style: italic;
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .bible-quote__source {
    color: #ccc;
    font-size: 14px;
  }
  .blog {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
  }
  .blog__title span {
    color: gray;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .blog__title h2 {
    font-size: 32px;
    margin: 10px 0;
  }
  .blog__title p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #888;
  }
  .blog__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  .blog__card {
    width: 300px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    border-radius: 6px;
  }
  .blog__card__img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .blog__card__date {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #000;
    color: white;
    padding: 5px 10px;
    text-align: left;
    font-size: 12px;
    line-height: 1.2;
  }
  .blog__card__date .day {
    font-size: 20px;
    font-weight: bold;
  }
  .blog__card__content {
    padding: 20px;
    text-align: left;
  }
  .blog__card__content h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .blog__card__content p {
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
  }
  .blog__card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
  }
  .read-more {
    background: #f7c200;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
  }
  .footer {
    background: #111;
    color: #ccc;
    padding: 60px 20px 20px;
    
  }
  
  .footer__container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  
  .footer__column {
    flex: 1 1 200px;
  }
  
  .footer__column--brand {
    max-width: 300px;
  }
  
  .footer__logo {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .footer__logo-yellow {
    color: #f5c012;
    font-weight: bold;
  }
  
  .footer__logo-white {
    color: #fff;
  }
  
  .footer__text {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .footer__social {
    margin-top: 20px;
  }
  
  .footer__social-link {
    color: #333;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin-right: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .footer__social-link:hover {
    background: #f5c012;
    color: #111;
  }
  
  .footer__title {
    color: #fff;
    margin-bottom: 15px;
  }
  
  .footer__list {
    list-style: none;
    padding: 0;
    font-size: 14px;
  }
  
  .footer__item {
    margin-bottom: 8px;
  }
  
  .footer__label {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .footer__highlight {
    color: #f5c012;
    font-weight: bold;
  }
  
  .footer__bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 13px;
    color: #888;
  }
  
  .footer__copyright i {
    color: #f5c012;
  }
  .welcome.wel{

  }

  .welcome.wel .welcome__container{
max-width: 1000px;
margin: 0 auto;
display: block;
  }
  .welcome.wel  .welcome__content img{
height: 300px;
object-fit: cover;
margin-bottom: 20px;
  }
  .welcome.wel  .welcome__content{
    max-width: 100%;
  }
  .events-us {
    padding: 90px 0px;
    background-color: #f9f9f9;
  }
  
  .events-us__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    padding: 0 15px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  @media (min-width: 768px) {
    .events-us__container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .events-us__item {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
  }
  
  .events-us__item:hover {
    transform: translateY(-5px);
  }
  
  .events-us__image-wrapper {
    position: relative;
  }
  
  .events-us__image {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .events-us__time {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #ffc107;
    color: #000;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
  }
  
  .events-us__content {
    padding: 20px;
  }
  
  .events-us__title {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .events-us__pastor,
  .events-us__location,
  .events-us__description {
    font-size: 15px;
    margin-bottom: 10px;
    color: #666;
  }
  
  .events-us__pastor-name {
    font-weight: bold;
    color: #fcb900;
  }
  
  .events-us__btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background-color: #fcb900;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s;
  }
  
  .events-us__btn:hover {
    background-color: #e0a800;
  }
  .services-us {
    padding: 60px 20px;
    background-color: #fdfdfd;
  }
  
  .services-us__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
  }
  
  @media (min-width: 768px) {
    .services-us__container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .services-us__item {
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .services-us__item:hover {
    transform: translateY(-5px);
  }
  
  .services-us__image-wrapper {
    width: 100%;
    overflow: hidden;
  }
  
  .services-us__image {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .services-us__content {
    padding: 20px;
  }
  
  .services-us__title {
    font-size: 22px;
    margin-bottom: 8px;
    color: #333;
  }
  
  .services-us__time,
  .services-us__location {
    font-size: 15px;
    color: #777;
    margin-bottom: 5px;
  }
  
  .services-us__description {
    font-size: 15px;
    color: #555;
    margin: 15px 0;
  }
  
  .services-us__btn {
    display: inline-block;
    background-color: #fcb900;
    color: #000;
    font-weight: bold;
    padding: 10px 16px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
  }
  
  .services-us__btn:hover {
    background-color: #e0a800;
  }

  .services.serv{
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
  }
  .services.serv .services__list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .services.serv .services__header{
flex: 1;
  }
  .services.serv .services__list{
    flex: 1;
  }
  .blog-detail {
    padding: 60px 20px;
    background-color: #fff;
    color: #333;
  }
  
  .blog-detail__container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .blog-detail__title {
    font-size: 32px;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .blog-detail__meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
  }
  
  .blog-detail__image-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
  }
  
  .blog-detail__image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
  }
  
  .blog-detail__content {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .blog-detail__paragraph {
    margin-bottom: 20px;
  }
  
  .blog-detail__share {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .blog-detail__share-label {
    font-weight: bold;
  }
  
  .blog-detail__share-link {
    font-size: 18px;
    color: #555;
    transition: color 0.3s;
  }
  
  .blog-detail__share-link:hover {
    color: #fcb900;
  }
  .contacts-us {
    padding: 80px 20px;
    background: #fff;
    color: #333;
  }
  
  .contacts-us__container {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .contacts-us__header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .contacts-us__subtitle {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: #999;
  }
  
  .contacts-us__title {
    font-size: 36px;
    margin: 10px 0;
  }
  
  .contacts-us__desc {
    font-size: 16px;
    color: #666;
  }
  
  .contacts-us__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  
  .contacts-us__info {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .contacts-us__info-box {
    background: #f9f9f9;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
  }
  
  .contacts-us__icon {
    font-size: 40px;
    color: #fcb900;
    margin-right: 15px;
    min-width: 24px;
  }
  
  .contacts-us__info-title {
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .contacts-us__info-text {
    font-size: 14px;
    color: #666;
  }
  
  .contacts-us__form {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .contacts-us__input,
  .contacts-us__textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    font-size: 14px;
  }
  
  .contacts-us__textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  .contacts-us__button {
    background: #fcb900;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.3s;
  }
  
  .contacts-us__button:hover {
    background: #e0a800;
  }
  .gallery-us {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .gallery-us__container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .gallery-us__subtitle {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: #aaa;
  }
  
  .gallery-us__title {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0 40px;
  }
  
  .gallery-us__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }
  
  .gallery-us__item {
    display: block;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .gallery-us__item:hover {
    transform: scale(1.03);
  }
  
  .gallery-us__image {
    width: 100%;
    object-fit: cover;
    height: 250px;
    display: block;
  }
  .testimonial-us {
    padding: 90px 20px;
    background-color: #f8f9fa;
    text-align: center;
  }
  
  .testimonial-us__title {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
  }
  
  .testimonial-us__list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .testimonial-us__item {
    background: white;
    border-radius: 8px;
    padding: 25px 20px;
    max-width: 320px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  }
  
  .testimonial-us__text {
    font-style: italic;
    margin-bottom: 15px;
  }
  
  .testimonial-us__author {
    font-weight: bold;
    color: #333;
  }
  .faq-us {
    padding: 90px 20px;
    background: #fff;
  }
  .faq-us__container{
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
  }
  .faq-us__title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
  }
  
  .faq-us__item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
  }
  
  .faq-us__question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 18px;
    padding: 15px 0;
    cursor: pointer;
    font-weight: 600;
  }
  
  .faq-us__answer {
    display: none;
    padding: 0 0 15px 0;
    color: #555;
  }
  .ter {
    padding: 90px 0;
  }
  .ter .container{
    display: flex;
    gap: 0px;
    flex-direction: column;
  }

  .coo__banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #1c1c1c;
    color: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    justify-content: center;
    animation: slideUp 0.5s ease-out;
  }
  
  .coo__banner__container {
    max-width: 960px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }
  
  .coo__banner__text {
    font-size: 16px;
    flex: 1 1 auto;
    line-height: 1.5;
  }
  
  .coo__banner__link {
    color: #ffd600;
    text-decoration: underline;
  }
  
  .coo__banner__button {
    background-color: #ffd600;
    border: none;
    color: #000;
    padding: 10px 22px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .coo__banner__button:hover {
    background-color: #e6c200;
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
@media screen and (max-width:768px) {
    .events__grid {
        display: grid
    ;
        grid-template-columns: repeat(1, 1fr);
        margin-top: -90px;
        gap: 30px;
        padding: 15px;
        justify-content: center;
    } 
    .bible-quote__content {
        position: relative;
        z-index: 2;
        display: flex
    ;
        align-items: center;
        gap: 30px;
        max-width: 800px;
        margin: 0 auto;
        flex-direction: column;
    }
    .stats__container {
        display: flex
    ;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        flex-wrap: wrap;
    }
    .welcome__container {
        display: flex
    ;
        padding: 0;
        margin: 0 auto;
        flex-direction: column;
    }
    .welcome__image {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .welcome__content {
        flex: 1 1 100%;
        max-width: 100%;
        display: flex
    ;
        padding: 40px;
        flex-direction: column;
        justify-content: center;
    }
    .hero {
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: background-image 1s ease-in-out;
      }
      .hero__overlay {
        background-color: rgba(0, 0, 0, 0.6);
        height: 95%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        padding:90px 20px;
      }
      .header__nav ul

 {
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 40px;
        right: 0;
        width: calc(100% - 40px); 
        padding: 20px;
        display: none;
    }
    .services.serv {
        max-width: 1200px;
        padding: 0 15px;
        margin: 0 auto;
        display: flex
    ;
        gap: 50px;
        align-items: center;
        flex-direction: column;
    }
    .header .container {
      display: flex
  ;
      justify-content: space-between;
      align-items: center;
      padding: 10px;
  }
  .contacts-us__input, .contacts-us__textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: auto;
    font-size: 14px;
}
}