@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');


@font-face {
  font-family: "Source Serif Pro";
  src: url("/assets/fonts/SourceSerifPro-ExtraLightlt.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Source Serif Pro";
  src: url("/assets/fonts/SourceSerifPro-Lightlt.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Source Serif Pro";
  src: url("/assets/fonts/SourceSerifPro-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Source Serif Pro";
  src: url("/assets/fonts/SourceSerifPro-Semiboldlt.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Source Serif Pro";
  src: url("/assets/fonts/SourceSerifPro-Boldlt.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Source Serif Pro";
  src: url("/assets/fonts/SourceSerifPro-Blacklt.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Source Serif Pro";
  src: url("/assets/fonts/SourceSerifPro-It.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}

* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

img {
    margin: 0 auto;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
    list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  height: auto;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

main {
    font-family: "Montserrat", sans-serif;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  color: #000;
}

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


:root {
  --font-family: "Inter", sans-serif;
  --second-family: "Libre Franklin", sans-serif;
  --third-family: "Source Serif Pro", sans-serif;
  --font3: "Montserrat", sans-serif;
  --font4: "Georgia", sans-serif;
}

header {
    background-color: #d51e05; 
    color: #fff;
    padding: 28px;
    align-items: center;
    border-bottom: 1px solid #000000;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding-left: 63px;
    padding-right: 63px;
}

.head-wrap {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-container {
    max-width: 1020px;
    margin: 0 auto;
}

.header-logo {
    color: #ffffff;
    font-weight: 900;
    font-size: 23px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 20px;
}

header a {
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    text-transform: capitalize;
    color: white;
}

header img {
    height: 48px;
}

.nav-list {
    flex-direction: row;
    display: flex;
    gap: 20px;
}

.nav-list a {
    padding-bottom: 4px;
    border-bottom: 2px solid #000000;
}

.burger {
    display: none;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #0f3b36;
}

.logo {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
}

.burger {
    width: 40px;
    height: 40px;
    border: none;
    background: #17830c;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
}

.burger span,
.burger span::before,
.burger span::after {
    content: "";
    position: absolute;
    left: 40%;
    width: 17px;
    height: 3px;
    background: white;
    transform: translateX(-50%);
    transition: 0.3s;
}

.burger::after {
  content: '';
  position: absolute;
  right: 6px;
  width: 8px;
  top: 15px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s;
}


.burger.active::after {
  transform: rotate(225deg);
  right: 1px;
}


.burger span {
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
}

.burger.active span {
    width: 15px;
}

.burger span::before {
    top: -7px;
}

.burger span::after {
    top: 7px;
}


.mobile-menu {
    position: absolute;
    top: 70px;
    right: 8px;
    width: 195px;
    height: 260px;
    background: #941504;
    border-radius: 24px;
    padding: 20px 26px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.25s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu ul li a {
    display: block;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    margin-top: 12px;
}

.mobile-menu ul li {
    margin-bottom: 8px;
    position: relative;
}

.mobile-menu ul li::after {
    content: "";
    width: 80%;
    height: 2px;
    background: rgba(0, 0, 0, 0.3);
    display: block;
    margin: 4px auto 0;
    border-radius: 2px;
}


.header-down {
    font-weight: 700;
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    background-color: #17830c;
    text-align: center;
    padding: 15px;
}

.header-down h3 {
    font-weight: 700;
    font-size: 50px;
    line-height: 110%;
    font-family: var(--third-family);
    color: #fff;
    text-transform: capitalize;
    text-align: center;
    text-align: left;
}

.news {
    max-width: 700px;
    margin: 0 auto;
    margin-top: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    margin-left: 123px;
}

.news-img-wrap {
    display: flex;
    gap: 24px;
    margin-top: 4px;
}

.news h2 {
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 28px;
    line-height: 114%;
    text-transform: capitalize;
    color: #000;
    margin-bottom: 14px;
}

.news-img {
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-img p {
    font-weight: 500;
    font-size: 12px;
    color: #c9c6c6;
}

.news p {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 194%;
    text-transform: capitalize;
    color: #000;
    margin-bottom: 50px;
    max-width: 680px;
}

.news span {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    color: #000;
    display: flex;
    justify-content: center;
    margin-top: 8px;
    margin-bottom: 12px;
}

.news a {
    color: #d51e05;
    font-weight: bold;
    text-decoration: underline;
}

.aticle-container {
    max-width: 700px;
    margin: 0 auto;
}

.container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.content {
    flex: 3;      
}

.sidebar {
    flex: 1;        
    max-width: max-content;
}

.sidebar-mob {
    display: none;
}

.sidebar-first {
    padding: 15px;
    border-radius: 20px;
    margin-right: 67px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
    background: #fff;
    padding: 20px 24px;
    margin-top: 24px;
    max-width: 349px;
}

.sidebar-first-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-first-wrap h3 {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 34px;
    line-height: 94%;
    text-transform: capitalize;
    color: #000;
}

.sidebar-first h2 {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 133%;
    text-transform: capitalize;
    color: #000;
    margin-bottom: 8px;
}

.sidebar-first-wrap {
    margin-bottom: 12px;
}

.sidebar-first-list {

}

.sidebar-first-list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #d9d9d9;
    padding-bottom: 4px;
    margin-bottom: 22px;
}

.sidebar-first-list li h5 {
    font-family: var(--third-family);
    font-weight: 600;
    font-size: 15px;
    line-height: 178%;
    text-transform: capitalize;
    color: #000;
}

.sidebar-first-list li h4 {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 15px;
    line-height: 160%;
    text-transform: uppercase;
    text-align: right;
    color: #000;
}

.sidebar-second {
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
    background: #17830c;
    margin-right: 67px;
    margin-top: 24px;
    border-radius: 20px;
    padding: 30px 24px 40px 24px;
}

.sidebar-second h3 {
    font-family: var(--third-family);
    font-weight: 900;
    font-size: 24px;
    line-height: 133%;
    text-transform: capitalize;
    text-align: center;
    color: #fff !important;
    margin-bottom: 24px;
}

.sidebar-second h6 {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 160%;
    text-transform: capitalize;
    text-align: center;
    color: #fff;
    max-width: 300px;
}

.sidebar-second a {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 133%;
    text-transform: capitalize;
    text-align: right;
    color: #d51e05;
    background: #fff;
    border-radius: 20px;
    padding: 10px 20px;
    display: block;
    max-width: max-content;
    margin: 0 auto;
    margin-top: 17px;
}

.article-container {
    display: flex;
    gap: 20px; 
}

.news {
    flex: 1;
}

.sidebar {
    position: sticky;
    top: 20px;
    align-self: start;
    max-height: calc(100vh - 20px);
}

.carousel {
    margin-left: 84px;
    margin-top: 160px;
}

.carousel h2 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 36px;
    color: #000;
}


.carousel-track h3 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 32px;
    text-transform: capitalize;
    color: #000;
    max-width: 550px;
    margin-bottom: 16px;
}

.carousel-track p {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 18px;
    color: #000;
    max-width: 550px;
}

.carousel-track img {
    width: 100%;
    max-width: 460px;
    height: auto;
    display: block;
}


.carousel-item {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 4px solid #D9D9D9;
    padding-bottom: 40px;
}

.carousel-track {
    display: flex;
    flex-direction: row;
    gap: 36px;
}

.carousel {
    overflow-x: auto;
    scrollbar-width: none; 
    -ms-overflow-style: none;
    padding-bottom: 20px;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 36px;
    cursor: grab;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-item {
    flex: 0 0 auto;
}

footer {
    background-color: #d51e05;
}

.footer-container {
    padding: 21px 51px 27px 11px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.footer-container img {
    width: 48px;
    height: 48px;
}

.footer-left {
    display: flex;
    gap: 45px;
}

.footer-right {
    display: flex;
    gap: 48px;
}

.footer-container ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.footer-container a {
    color: #FFFFFF;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
}

.footer-copyright {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    padding-bottom: 27px;
}

.news-page {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 36px;
    padding-bottom: 64px;
}

.news-page h1 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 50px;
    text-transform: uppercase;
    text-align: center;
    color: #000;
}

.news-page-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
} 

.news-page-list li {
    display: flex;
    align-items: center;
    border-bottom: 4px solid #D9D9D9;
    justify-content: space-between;
    padding: 24px 10px 24px 10px;
}

.news-page-text-date {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.news-page-text-date h5 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    color: #6a6a6a;
    letter-spacing: 0.5px;
}

.news-page-list h3 {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 29px;
    line-height: 1.2;
    text-transform: none;
    color: #1a1a1a;
    max-width: 600px;
    margin-bottom: 16px;
}

.news-page-list img {
    max-width: 460px;
    height: auto;
    border-radius: 8px; 
}

.news-page-list p {
    max-width: 600px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 24px;
}
.privacy-container {
    max-width: 1029px;
    padding: 36px 10px 64px 10px;
    margin: 0 auto;
}

.privacy h1 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 50px;
    text-transform: uppercase;
    text-align: center;
    color: #000;
    margin-bottom: 40px;
}

.privacy p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    text-transform: capitalize;
    color: #000;
    margin-bottom: 28px;
}

.cookie-banner-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    backdrop-filter: blur(10px);
    background-color: black;
    box-sizing: border-box;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner-text {
    flex-grow: 1;
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    color: #fff;
}

.cookie-info-link {
    display: block;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #f44;
    margin-top: 12px;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-button {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 2px;
    transition: background-color 0.3s, border-color 0.3s;
    white-space: nowrap;
}

.reject-button {
    border: 1px solid #fff;
    padding: 10px 24px;
    background: none;
    color: white;
}

.reject-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.news-page-text p {
    margin-bottom: 10px;
}

.accept-button {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 28px;
    text-transform: capitalize;
    color: #fff;
    padding: 10px 24px;
    background: #d51e05;
    border: none;
}

.accept-button:hover {
    background-color: #d18401;
}

.dn {
    display: none;
}

@media (max-width: 768px) {
    .cookie-banner-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }

    .cookie-banner-text {
        margin-bottom: 15px;
    }

    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

    .cookie-button {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 1280px) and (min-width: 1023px) {
    .header-logo {
        margin-right: 50px;
    }

    .nav-list {
        gap: 30px;
    }

    header {
        padding-left: 16px;
        padding-right: 27px;
    }

    .head-wrap {
        justify-content: space-between;
    }

    .header-down {
        padding-left: 64px;
    }

    .sidebar-first h2 {
        font-size: 20px;
    }

    .sidebar-first-wrap h3 {
        font-size: 28px;
    }

    .news {
        margin-left: 64px;
        max-width: 640px;
    }

    .sidebar-first {
        padding: 12px 24px;
    }

    .sidebar-first-list li h5 {
        font-size: 13px;
    }

    .sidebar-first-list li h4 {
        font-size: 12px;
    }
    
    .sidebar-first {
        margin-right: 16px;
    }

    .sidebar-second {
        padding: 24px 16px;
        margin-right: 16px;
    }

    .carousel {
        margin-left: 48px;
        margin-top: 64px;
    }

    .news-page {
        max-width: 827px;
    }

    .news-page-list img {
        max-height: 259px;
    }

    .news-page-list li {
        gap: 16px;
    }

    .news-page-list h3 {
        max-width: 351px;
    }

    .news-page-list p {
        max-width: 351px;
    }

    .privacy-container {
        max-width: 827px;
    }
}

@media screen and (max-width: 1023px) and (min-width: 727px) {


.sidebar {
    display: none;
}

.news {
    margin-left: 0;
    max-width: 621px;
}

header {
    padding: 28px 13px 28px 16px;
    justify-content: flex-start;
}

.header-logo {
    margin-right: 16px;
}


.header-container {
    max-width: 649px;
    margin: 0 auto;
}

header {
    justify-content: center;
}

.burger {
    display: block;
}
}

@media screen and (min-width: 250px) and (max-width: 1023px) {
    .sidebar-mob {
        display: flex;
        justify-content: space-between;
        margin-bottom: 12px;
    }

    .sidebar {
        display: none;
    }

    .nav-list li:nth-child(n + 5) {
        display: none;
    }

    .nav-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
    }


    .news {
        margin-left: 0;
    }
}   

@media (max-width: 1023px) {
    .sidebar-second,
    .sidebar-first {
        margin-right: 0;
        width: 286px;
    }

    .sidebar-first h2 {
        font-size: 20px;
    }

    .sidebar-first-wrap h3 {
        font-size: 28px;
    }

    .sidebar-first-list li h5 {
        font-size: 14px;
    }

    .sidebar-first {
        padding: 12px 22px;
    }

    .sidebar-first-list li h4 {
        font-size: 13px;
    }
    
    .sidebar-second {
       padding: 24px 16px 59px 16px; 
    }

    .sidebar-second h6 {
        max-width: 254px;
    }

    .sidebar-second a {
        border: none;
    }

    .sidebar-mob-h4 {
        font-size: 9px !important;
    }

    .carousel {
        margin-left: 48px;
        margin-top: 0;
    }

        .news-page-list li {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;
    }

    .news-page-text {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .news-page-text h3 {
        order: 1;
    }

    .news-page-text-date {
        order: 2;
    }

    .news-page-list li img {
        order: 3;
        width: 100%;
        height: auto;
    }

    .news-page-text p {
        order: 4;
    }

      .news-page-list li {

    gap: 12px;
    padding: 16px 10px;
    border-bottom: 1px solid #D9D9D9;
  }

  .news-page-text {
    display: contents;
  }

  .news-page-text h3 {
    order: 1;
    width: 100%;
  }

  .news-page-text-date {
    order: 2;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .news-page-list li > img {
    order: 3;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .news-page-text p {
    order: 4;
    width: 100%;
  }
  
  .news-page {
    max-width: 580px;
    margin: 0 auto;
  }

  .news-page-list li {
    justify-content: center !important;
  }

  .privacy-container {
    max-width: 700px;
  }

  .news-page-list {
    gap: 10px;
  }

  .news-page-list li {
    gap: 0;
  }

  .news-page-text p {
    margin-top: 16px;
  }

  .nav-list a {
    font-size: 16px;
  }
}

@media (max-width: 726px) {
    .header-logo {
        font-size: 20px;
    }

    header {
        padding: 22px 14px;
    }
    
    .header-logo {
        margin-right: 20px;
    }

    .privacy-container {
        max-width: 584px;
    } 
}

@media (max-width: 605px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 726px) {
    .news {
        padding: 0 16px;
    }
} 

@media (max-width: 607px) {
    .sidebar-mob {
        flex-direction: column;
    }

    .sidebar-second, .sidebar-first {
        width: 100%;
        max-width: 100%;
    }

    .sidebar-second h6 {
        max-width: 100%;
    }

    .header-down h3 {
        font-size: 32px;
    }
    
    .header-down {
        padding: 15px 31px;
    }

    .news h2 {
        font-size: 24px;
    }

    .news {
        margin-top: 16px;
    }

    .news h2 {
        font-size: 20px;
    }

    .sidebar-first-wrap h3 {
        font-size: 25px;
    }

    .news p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .carousel {
        margin-left: 8px;
    }

    .carousel-track img {
        margin-top: 17px;
        width: 172px;
        height: 259px;
        object-fit: cover;
    }

    .carousel-track h3 {
        font-size: 24px;
        max-width: 233px;
    }

    .carousel-track p {
        font-size: 16px;
        max-width: 233px;
    }

    .carousel-item {
        margin-top: 22px;
    }
    
    .privacy h1 {
        font-size: 32px;
    }

    .privacy p {
        font-size: 18px;
    }

    .privacy-container {
        padding: 24px;
    }

    .nav-list {
        display: none;
    }
}

@media (max-width: 407px) {
    .header-down {
        padding: 15px 23px;
    }

    .header-down h3 {
        font-size: 26px;
    }

    .news-img p {
        font-size: 10px;
    }

    .news h2 {
        font-size: 24px;
    }

    .news p {
        line-height: 24px;
        margin-bottom: 15px;
    }

    .carousel h2 {
        font-size: 24px;
        padding-left: 10px;
    }
    
    .carousel-track h3 {
        max-width: 343px;
    }

    .dn {
        display: flex;
    } 

    .carousel-track p {
        display: none;
    }

    .carousel-item {
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-evenly;
        gap: 0;
        padding-bottom: 0;
        border: none;
    }


    .carousel-track img {
        width: 100%;
        max-width: 343px;
        object-fit: cover;
        margin-top: 8px;
    }

    .carousel-track {
        gap: 16px;
    }

    .dn h6 {
        font-weight: 500;
        font-size: 12px;
        text-transform: capitalize;
        color: #909090;
    }

    .carousel-track h3 {
        margin-bottom: 4px;
    }
}

@media (max-width: 1023px) {
    .head-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 640px;
    }

    .burger {
        display: block;
    }
}

@media (max-width: 865px) {
    .cookie-banner-text {
        font-size: 16px;
    }

    .reject-button,
    .accept-button {
        padding: 6px 18px;
        font-size: 16px;
    }
    
}

@media (max-width: 768px) {
    .cookie-banner-actions {
        width: 50%;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        margin: 0 auto;
    }

    .cookie-banner-container {
        padding: 8px 12px;
    }

    .cookie-info-link {
        margin-top: 5px;
    }
}

.nav-list a.active {
    color: black;
    border-bottom: 2px solid black;
}

.header-last-news h3 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.footer-container {
    max-width: 1258px;
    margin: 0 auto;
}

.mob-btn-news {
    display: none;
    font-weight: 900;
    font-size: 36px;
    line-height: 100%;
    text-transform: uppercase;
    color: #89C4BB;
    padding: 12px 24px;
    border-radius: 25px;
    border: 4px solid #004F4F;
    margin: 0 auto;
    margin-top: 24px;
    max-width: max-content;
}


@media (max-width: 1023px) {
    .header-last-news h3 {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    .mob-btn-news {
        display: block;
    }
}

.news-page-list li {
    display: flex;
}

.news-page-list li img {
    max-width: 460px;
}

@media (max-width: 1023px) {
    .news-page-list li img {
        max-width: 100%;
    }
}

.contact {
    max-width: 600px;
    margin: 120px auto;
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    font-family: 'Arial', sans-serif;
}

.contact p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact .input-wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #555;
}

.contact input {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.3s;
}

.contact input:focus {
    border-color: #004F4F;
    box-shadow: 0 0 5px rgba(0, 80, 48, 0.3);
    outline: none;
}

.contact .btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #d51e05;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.contact .btn-submit:hover {
    background-color: #ff2508;
}

@media (max-width: 480px) {
    .contact {
        padding: 20px 15px;
        margin: 30px 15px;
    }

    .contact p {
        font-size: 0.95rem;
    }

    .contact input, .contact .btn-submit {
        font-size: 0.95rem;
    }
}

.popup-overlay {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.popup-content {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
    opacity: 1;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

@keyframes fadeIn {
    from {opacity:0;}
    to {opacity:1;}
}

.popup-content h3 {
    margin-bottom: 10px;
    color: #000000;
}

.popup-content p {
    color: #555;
    font-size: 0.95rem;
}

.about {
    padding: 40px 20px;
    background-color: #f8f9fa;
    color: #333;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
}

.about-list li {
    display: flex; 
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
    flex-wrap: wrap;
}


.about-list li img {
    flex: 1; 
    min-width: 280px;
    max-width: 50%;
    max-height: 420px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-list li img:hover {
    transform: scale(1.02); 
}

.about-text {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    padding: 20px;
    line-height: 1.6;
    background-color: #fff; 
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.about-text p {
    margin-bottom: 15px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: #004F4F;
}

.about-text em {
    font-style: italic;
    color: #555;
}

@media (max-width: 992px) {
    .about-list li {
        flex-direction: column; 
        text-align: center;
        margin-bottom: 40px;
    }

    .about-list li:nth-child(even) {
        flex-direction: column-reverse;
    }

    .about-list li img,
    .about-text {
        max-width: 80%;
        min-width: unset; 
        margin: 0 auto;
    }

    .about-list li img {
        margin-bottom: 20px;
        max-height: 100%;
    }
    
}

@media (max-width: 768px) {
    .about {
        padding: 20px 15px;
    }

    .about-list li {
        margin-bottom: 30px;
    }

    .about-list li img,
    .about-text {
        max-width: 95%;
    }

    .about-text {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .about-list li img,
    .about-text {
        max-width: 100%;
    }
}

@media (max-width: 1115px) {
    header a {
        font-size: 17px;
    }
}

@media (max-width: 643px) {
    .nav-list {
        display: none;
    };
}

.footer-logo {
    color: #ffffff;
    font-weight: 900;
    font-size: 23px;
    text-transform: uppercase;
    margin-right: 10px;
}

.footer-logo-link {
    color: #ffffff;
    font-weight: 900 !important;
    font-size: 23px !important;
    text-transform: uppercase !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-page-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.news-page-btn a {
  padding: 12px 40px;
  background-color: #d51e05;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: 
    background-color 0.3s ease, 
    box-shadow 0.3s ease, 
    transform 0.2s ease;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  font-size: 16px;
}

.news-page-btn a:hover {
  background-color: #d18401;
  transform: translateY(-2px);
  box-shadow: 
    0 6px 10px rgba(0, 0, 0, 0.15), 
    0 2px 4px rgba(0, 0, 0, 0.1);

}

.news-page-btn a:active {
  transform: translateY(0);
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.1), 
    0 1px 2px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1023px) {
  .news-page-btn {
    display: none;
  }
}

@media (max-width: 656px) {
    .footer-container,
    .footer-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-container ul {
        text-align: center;
    }

    .footer-container {
        gap: 45px;
    }

    .footer-container {
        padding: 22px;
    }

    .footer-copyright {
        padding: 10px 22px;
    }
}

.scroll-top-btn {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    border: none;
    font-size: 22px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
}

.scroll-top-btn:hover {
    background: #333;
}

@media (max-width: 768px) {
    .scroll-top-btn {
        display: flex;
    }
    .scroll-top-btn.show {
        opacity: 1;
        visibility: visible;
    }
}

.news h3 {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 23px;
    line-height: 194%;
    text-transform: capitalize;
    color: #d51e05;
    max-width: 680px;
    font-weight: bold;
}

@media (max-width: 607px) {
    .news h3 {
        font-size: 19px;
    }
}

.news h4 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    font-weight: 600;
    padding-left: 0.6em;
}

.news ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5em;
}

.news ul li {
    position: relative;
    padding-left: 1em;
    margin-bottom: 0.8em;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.news ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745;
    font-weight: bold;
}


@media (max-width: 768px) {
    .news h4 {
        font-size: 1.1rem;
        padding-left: 0.4em;
    }
    .news ul li {
        font-size: 0.95rem;
        padding-left: 1.8em;
    }
}
