body
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
    overflow-x: hidden !important;
    scroll-behavior: smooth;
    background-color: #fff;
}

h1 {
    margin: 0;
    padding: 0;
}

h2 {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
    color: #666;
    margin-bottom: 20px;
}

@media (max-width: 991px)
{
    h2 {
        padding: 0 30px;
    }
}

.bold {
    font-weight: 600;
    margin-right: 0;
    padding-right: 0;
}
.faq-question span {
    margin: 0;
    padding: 0;
}
figure, time, p {
    margin: 0;
    padding: 0;
}

section {
    width: 100%;
    height: auto;
    background-color: #fff;
}



/* scrollbar */

::-webkit-scrollbar
{
    width: 10px;
}
  
::-webkit-scrollbar-track
{
    background: #eee;
}
  
::-webkit-scrollbar-thumb
{
    background: #d1d1d1;
}
  
::-webkit-scrollbar-thumb:hover
{
    background: #bbbbbb;
}


/* nav */

.navigation
{
    text-decoration: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    user-select: none;
    /* background-color: #fff; */
    background: rgba(255, 255, 255, 0.4); 
    backdrop-filter: blur(20px);         
    -webkit-backdrop-filter: blur(20px);
}

.nav-container
{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .logo {
  position: relative;
  width: 150px;
  height: 60px;
  overflow: hidden;
}
nav .logo::before,
nav .logo::after {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.2s ease-in-out;
    /* background-color: #fff; */
}
nav .logo::before {
  background-image: url(img/logo3.png);
  z-index: 1;
  opacity: 1;
}
nav .logo::after {
  background-image: url(img/logo2.png);
  z-index: 2;
  opacity: 0;
}
nav .logo:hover::after {
  opacity: 1;
}

nav ul.navbar
{
    list-style: none;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    left: -100px;
}

nav ul.navbar li
{
    width: auto;
    height: 60px;
    float: left;
    text-align: center;
    line-height: 60px;
    letter-spacing: 1px;
    font-weight: 700;
    position: relative;
}

nav ul.navbar li a
{
    font-size: 16px;
    text-decoration: none;
    color: #575757;
    display: block;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0;
    transition: color 0.2s ease-in-out;
}

nav ul.navbar li a:hover
{
    color: #d9ff02;
}

.svg-icon {
    width: 20px;
    height: 20px;
    fill: #575757;
    transition: fill 0.2s ease-in-out;
    line-height: 60px;
    display: block;
    padding: 20px;
    margin-left: -16px;
    margin-right: -16px;
}

.svg-icon-menu {
    width: 26px;
    height: 26px;
    padding: 14px;
    margin-top: -15px;
}

.svg-icon:hover {
    fill: #d9ff02;
}

#menu-bar
{
    display: none;
}

nav label
{
    font-size: 20px;
    color: #575757;
    padding: 18px;
    cursor: pointer;
    display: none;
}

nav label:hover
{
    color: #b0cb1f;
}

nav ul.navbar li label
{
    font-size: 16px;
    color: #575757;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    cursor: pointer;
    display: block;
    transition: transform 0.1s ease-in-out;
}

nav ul.navbar li label:hover
{
    text-decoration: none;
    background-color: #fff;
    transform: scale(0.95);
}


.nav-button {
    height: 45px;
    width: 140px;
    font-size: 16px;
    line-height: 45px;
    display: inline-block;
    color: #575757;
    text-align: center;
    /* border: #b0cb1f solid 2px; */
    border-radius: 50px; 
    /* background-color: #b0cb1f; */
    background-color: #fff;
    position: absolute;
    right: 7px;
    top: 7px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease;

    -webkit-box-shadow: 0px 0px 30px -10px rgb(180, 180, 180);
    -moz-box-shadow: 0px 0px 30px -10px rgb(180, 180, 180);
    box-shadow: 0px 0px 30px -10px rgb(180, 180, 180);
}


.nav-button:hover
{  
    /* background-color: #fff;
    color: #b0cb1f; */
    background-color: #c5e21f;
    color: #fff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

nav ul.navbar li .mobile-nav-button {
    display: none;
    height: 45px;
    width: 140px;
    font-size: 16px;
    line-height: 45px;
    color: #575757;
    text-align: center;
    border: #b0cb1f solid 2px;
    border-radius: 50px; 
    background-color: #b0cb1f;
    text-decoration: none;
    font-weight: 800;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul.navbar li .mobile-nav-button:hover
{  
    background-color: #fff;
    color: #b0cb1f;
}

@media (max-width: 991px)
{
    nav label
    {
        display: initial;
    }
     
    nav ul.navbar li .mobile-nav-button {
        display: inline-block;
        margin-bottom: 20px;
    }

    .nav-button {
        display: none;
    }

    nav ul.navbar
    {
        position: absolute;
        top: 100%; left: 0; right: 0;
        padding: 0;
        margin: 0;
        display: none;
        max-height: 85vh; 
        overflow-y: auto;
        background: rgba(255, 255, 255, 1); 
    }

    .navigation {
        background: rgba(255, 255, 255, 1);
    }
   
    nav ul.navbar li
    {
        width: 100%;
        display: inline-block;
        clear: both;
        height: auto;
    }

    #menu-bar:checked ~ ul.navbar
    {
        display: initial;
    }

    .svg-icon {
        margin-left: auto;
        margin-right: auto;
    }
}




/* header */

.header-slider {
    position: relative;
    width: 100vw;
    height: 110vh;
    overflow: hidden;
    background-color: #fff;
    
}

.header-partnership {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #fff;
    
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 1s ease-in-out, filter 1s ease-in-out;
    width: 100%;
    height: 110vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #fff;
}

.slide.active {
    opacity: 1;
    filter: blur(0px);
    z-index: 1;
}

.header-text-container {
    display: flex; 
    width: 50vw;
    height: auto;
    flex-direction: column;
    justify-content: center;
    z-index: 20;
    position: absolute;
    top: 22vh;
    left: 22vh;
}

.header-photo {
    display: flex; 
    position: absolute;
    bottom: -60px;
    right: 0;
    height: 110vh;
    overflow: hidden;
    background-size: 100vw;
    background-position: center;
    object-fit: contain;
    z-index: 10;
    pointer-events: none;
    user-select: none;
}

.header-title {
    font-size: 3.9rem;
    font-weight: 900;
    line-height: 3.9rem;
}

.header-text {
    margin-top: 25px;
    font-size: 1.8rem;
    width: 75%;
}

.header-text-container h1 {
    margin: 0;
    padding: 0;
}

.header-button {
    margin-top: 25px;
    margin-bottom: 120px;
    display: flex;
    height: 45px;
    width: 180px;
    font-size: 16px;
    padding-bottom: 2px;
    justify-content: center;
    align-items: center;
    border-radius: 50px; 
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}


.header-button:hover
{  
    background-color: #000;
    color: #fff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
} 

.black-bt {
    background-color: #000;
    color: #fff;
    margin-bottom: 10px;
}

.black-bt:hover {
    background-color: #ffffff;
    color: #000000;
}

.green-bt {
    color: #555;
    background-color: #c5e21f;
    -webkit-box-shadow: 0px 0px 30px -10px #c5e21f;
    -moz-box-shadow: 0px 0px 30px -10px #c5e21f;
    box-shadow: 0px 0px 30px -10px #c5e21f;
}

.blue-bt {
    color:#fff;
    background-color: #0095da; 
    -webkit-box-shadow: 0px 0px 30px -10px #0095da;
    -moz-box-shadow: 0px 0px 30px -10px #0095da;
    box-shadow: 0px 0px 30px -10px #0095da;
}

.dark-blue-bt {
    color:#fff;
    background-color: #1768b3; 
    -webkit-box-shadow: 0px 0px 30px -10px #1768b3;
    -moz-box-shadow: 0px 0px 30px -10px #1768b3;
    box-shadow: 0px 0px 30px -10px #1768b3;
}

.green {
    color: #c5e21f;
}
.blue {
    color: #0095da;
}
.dark-blue {
    color: #1768b3;
}

.header-arrow {
    background-color: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 2.5rem;
    cursor: pointer;
    user-select: none;
    z-index: 2;
    border: none;
    transition: color 0.3s ease-in-out;
    display: inline-flex;
    margin-bottom: 8px;
}

.header-arrow:hover {
    color: #fff;
}

.header-slide-nav {
    position: absolute;
    bottom: calc(20px + 10vh);
    width: 100%;
    display: flex;
    text-align: center;
    z-index: 2;
    justify-content: center;
    flex-direction: row;
}

.dots {
    display: flex;
    user-select: none;
    -webkit-user-select: none; 
    -moz-user-select: none;   
    -ms-user-select: none; 
    align-items: center; 
    justify-content: center;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 5px 0px rgb(156, 156, 156);
    -moz-box-shadow: 0px 0px 5px 0px rgb(156, 156, 156);
    box-shadow: 0px 0px 5px 0px rgb(156, 156, 156);
}

.dot.active {
    background-color: white;
}


@media (max-width: 1760px)
{
    .header-text-container {
        width: 50vw;
        top: 22vh;
        left: 12vh;
    }

    .header-photo {
        bottom: -60px;
        right: -50px;
        height: 110vh;
    }

    .header-title {
        font-size: 3.4rem;
        line-height: 3.4rem;
    }

    .header-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 1500px)
{
    .header-text-container {
        width: 60vw;
        top: 22vh;
        left: 12vh;
    }

    .header-photo {
        bottom: -60px;
        right: -120px;
        height: 100vh;
    }

    .header-title {
        font-size: 3.3rem;
        line-height: 3.3rem;
    }

    .header-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 1350px)
{
    .header-text-container {
        width: 60vw;
        top: 26vh;
        left: 8vh;
    }

    .header-photo {
        bottom: -60px;
        right: -120px;
        height: 90vh;
    }

    .header-title {
        font-size: 3.1rem;
        line-height: 3.1rem;
    }

    .header-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 1150px)
{
    .header-text-container {
        width: 100vw;
        top: 10vh;
        left: 5vh;
    }

    .header-photo {
        bottom: 0px;
        right: -40px;
        height: 70vh;
    }

    .header-title {
        font-size: 3.1rem;
        line-height: 3.1rem;
    }

    .header-text {
        font-size: 1.4rem;
        width: 50%;
    }

}

@media (max-width: 991px)
{
    .header-text-container {
        width: 100vw;
        top: 10vh;
        left: 0;
    }

    .header-photo {
        bottom: 0px;
        right: 0px;
        height: 60vh;
    }

    .header-title {
        font-size: 3.1rem;
        line-height: 3.1rem;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .header-text {
        font-size: 1.4rem;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        text-align: center;
    }

    .header-button {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px)
{
    .header-text-container {
        width: 100vw;
        top: 10vh;
        left: 0;
    }

    .header-photo {
        bottom: 0px;
        right: 0;
        height: 60vh;
    }

    .header-title {
        font-size: 2.2rem;
        line-height: 2.2rem;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    .header-text {
        font-size: 1.3rem;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        text-align: center;
    }

    .header-partnership .header-text {
        font-size: 1.15rem;
        width: 90%;
    }

    .header-button {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575px)
{
    .header-text-container {
        width: 100vw;
        top: 10vh;
        left: 0;
    }

    .header-photo {
        bottom: 0px;
        right: -50px;
        height: 60vh;
    }

    .header-title {
        font-size: 1.7rem;
        line-height: 1.7rem;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }

    .header-partnership .header-title {
        font-size: 1.5rem;
    }

    .header-text {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
        text-align: center;
    }

    .header-partnership .header-text {
        font-size: 0.8rem;
        width: 95%;
    }

    .header-button {
        margin-left: auto;
        margin-right: auto;
    }
}






.courses {
    width: 100%;
    height: auto;
    padding-top: 1%;
    padding-bottom: calc(5vh + 30px);
    background-color: #f5f5f5;
    position: relative;
    user-select: none;
}

.img-courses {
    width: 100%;
    height: 8vh;
    position: absolute;
    top: -8vh;
    pointer-events: none;
    z-index: 100;
    object-fit: fill;
}

.img-courses-bottom {
    width: 100%;
    height: 5vh;
    position: absolute;
    bottom: 0;
    pointer-events: none;
    object-fit: fill;
}

.courses-container {
    width: calc(100%-100px);
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 10px 50px 0 50px;
}

.cours {
    flex: 0 0 360px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cours-text {
    position: absolute;
    color: #fff;
    text-align: center;
    font-size: 2.7rem;
    line-height: 2.7rem;
    font-weight: 900;
}

.cours img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-user-drag: none;
    pointer-events: none;
    overflow: hidden;
    /* border-radius: 6%; */
    transition: transform 0.4s ease-in-out;
}

.cours:hover img {
    transform: scale(1.08);
}

.courses-title {
    padding: 5px;
    font-size: 2.4rem;
    line-height: 2.4rem;
    text-align: center;
    margin: 0;
    margin-left: 30px;
    margin-right: 30px;
}















.company-information {
    display: flex;
    width: 100%;
    height: auto;
    background-color: #fff;    
    gap: 4vw;
    justify-content: center;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.information-photo {
    flex: 0 1 30%;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.information-photo img {
    border-radius: 30% 0 30% 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.information-text
{
    flex: 0 1 40%;
    box-sizing: border-box;
    font-size: 1.3rem;
    font-weight: 400;
    color: #575757;
    text-align: justify;
    overflow: hidden;
}

.information-text-right {
    display: block;
    text-align: right !important; 
}


.information-title
{
    font-size: 2.4rem;
    font-weight: 800;
    color: #b0cb1f;
    text-align: right;
}

.information-title-left {
    font-size: 2.4rem;
    font-weight: 800;
    color: #b0cb1f;
    text-align: left;
    margin-top: 25px;
}

.center {
    position: initial !important;
    right: none !important;
    text-align: center !important;
}

@media (max-width: 1399px)
{
    .information-photo {
        flex: 0 1 40%;
    }

    .information-text {
        flex: 0 1 50%;
        font-size: 1.2rem;
    }
}    

@media (max-width: 991px)
{
    .information-photo {
        flex: 0 1 40%;
        align-items: baseline;
    }
    .information-text {
        flex: 0 1 50%;
        font-size: 1.1rem;
    }
}

@media (max-width: 767px)
{   
    .information-photo {
        flex: 0 1 90%;
        padding: 0 20%;
    }

    .information-text {
        flex: 0 1 90%;
        font-size: 1.2rem;
        padding: 0 30px;
    }
    .company-information {
        flex-direction: column-reverse;
        padding: 35px 0 0 0;
    }
}

@media (max-width: 575px)
{  
    .information-photo {
        flex: 0 1 90%;
        padding: 0 30px;
    }

    .information-text {
        flex: 0 1 90%;
        font-size: 1.2rem;
        padding: 0 30px;
    }
}






.statistics {
    width: 100%;
    height: auto;
}

.statistics-image {
    width: 100%;
    height: auto;
    z-index: 20;
    pointer-events: none;
    margin-bottom: -20px;
    overflow: hidden;
}

.img-top {
    background-image: url(img/trees-background.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 16 / 2.5;
}

.img-bottom {
    background-image: url(img/characters-background.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 16 / 5.45;
}


.statistics-container {
    background-color: #758c00;
    width: 70%;
    display: flex;
    justify-content: center;
    gap: 1%;
    padding-left: 15%;
    padding-right: 15%;
}

.statistics-box {
    width: 320px;
    height: 130px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 5rem;
}

.statistics-text {
    position: absolute;
    color: #fff;
    text-align: center;
    font-size: 3.4rem;
    line-height: 3.4rem;
    font-weight: 900;
}

.statistics-text-small {
    margin-top: 50px;
    position: absolute;
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 400;
    padding-top: 4rem;
}


@media (max-width: 1299px)
{
    .statistics-container {
        flex-wrap: wrap;
    }
    .img-top {
        aspect-ratio: initial;
        min-height: 260px;
    }

}    

@media (max-width: 991px)
{
    .img-bottom {
        background-image: url(img/characters-background-min.webp);
        aspect-ratio: 16 / 8.3;
    }
}

@media (max-width: 767px)
{   
    .img-bottom {
        background-image: url(img/characters-background-min-2.webp);
        aspect-ratio: 16 / 10.8;
    }
}









.faq {
  width: 100%;
  margin: 0 auto;
  padding: 30px 25%;
  box-sizing: border-box;
  background-color: #fff;

}

.faq-item {
    margin: 15px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1em;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    color: #555;

    background-color: #fff;
    border-radius: 40px; 
    text-align: center;
    -webkit-box-shadow: 0px 0px 4px 6px rgba(246, 246, 246, 1);
    -moz-box-shadow: 0px 0px 4px 6px rgba(246, 246, 246, 1);
    box-shadow: 0px 0px 4px 6px rgba(246, 246, 246, 1);
}

.arrow {
  transition: transform 0.3s ease;
}

.faq-question.active .arrow {
  transform: rotate(180deg); 
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  border-left: 2px dashed #ccc;
  margin-left: 30px;
  font-size: 1rem;
  display: flex;
  flex-direction: row;
}

.faq-answer p {
  padding: 1vw;
  margin: 0;
}

.faq-answer .member-photo {
    min-height: 250px;
    min-width: 200px;
    max-height: 250px;
    max-width: 200px;
    aspect-ratio: 4/5;
    margin-left: 10px;
    margin-top: 10px;
    pointer-events: none;
    overflow: hidden; 
    display: block;
}

.faq-answer .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1299px)
{
    .faq {
        padding: 30px 17%;
    }
}    

@media (max-width: 991px)
{
    .faq {
        padding: 30px 12%;
    }
}

@media (max-width: 767px)
{   
    .faq {
        padding: 30px 5%;
    }
    .faq-answer {
        flex-direction: column;
    }

    .faq-answer .member-photo {
        margin-left: auto;
        margin-right: auto;
    }
}






.container {
    width: 100%;
    height: 500px;
    background-color: #eee;
}


.opinions-container {
    display: flex;
    flex-direction: column;
    padding: 50px 0;
    position: relative;
    overflow: hidden;

    border-radius: 0 0 30px 30px;
}

.opinions-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px; /* wysokość poświaty */
  background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
  pointer-events: none; /* żeby nie blokować kliknięć */
}

.opinions-container h1 {
    font-size: 2.4rem;
    text-align: center;
    margin: 0;
}

.opinions-container h2 {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
    color: #666;
    margin-bottom: 20px;
}

.opinions {
    width: 100%;
    display: flex;
    background-color: #fff;
    flex-direction: row;
    justify-content: center;
    gap: 0 25px;
}

.opinions-column {
    display: flex;
    flex-direction: column;
    gap: 25px 0;
    width: 302px;
}

.opinion-slide {
    display: flex;
    flex-wrap: wrap;
    border-radius: 25px;
    padding: 20px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.opinion-slide:hover {
    transform: translateY(-10px);
}

.opinion-header {
    display: flex;
    flex-direction: row;
    gap: 0 5px;
    flex: 1 0 100%;
}

.opinion-stars {
    color: #facc15;
    font-size: 1.5rem;
    width: 100%;
    text-align: center;
    margin: -8px 0 2px 0;
}

.opinion-avatar {
    background-color: #fff;
    height: 50px;
    border-radius: 50%;
    flex: 0 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.opinion-avatar img {
    width: 100%;
    height: 100%;
}

.opinion-text {
    display: flex;
    flex-direction: column;
    min-height: 50px;
}

.opinion-nickname {
    font-size: 0.9rem;
    font-weight: 700;
    color:#2c2c2c;
}

.opinion-date {
    color: #666;
    font-size: 0.85rem;
}

.opinion-content {
    width: 100%;
    /* font-size: 0.87vw; */
    font-size: 1rem;
    font-weight: 500;
    color:#444;
}

.opinion-google-logo {
    display: block;
    width: 40px;
    height: 40px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
}

.opinion-button {
    display: flex;
    height: 45px;
    width: 180px;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    padding-bottom: 2px;
    color: #555;
    justify-content: center;
    align-items: center;
    border-radius: 50px; 
    background-color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-box-shadow: 0px 0px 30px -10px rgb(180, 180, 180);
    -moz-box-shadow: 0px 0px 30px -10px rgb(180, 180, 180);
    box-shadow: 0px 0px 30px -10px rgb(180, 180, 180);
}

.opinion-button:hover
{  
    background-color: #c5e21f;
    color: #fff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}


@media (max-width: 1299px)
{
    #column-3 {
        display: none;
    }
}    

@media (max-width: 991px)
{
    #column-4 {
        display: none;
    }

    .opinions-column{
        width: initial;
        flex: 0 1 calc(50% - 50px);
    }

    .opinions-container h1 {
        font-size: 2.8rem;
        padding: 0 40px;
    }

    .opinions-container h2 {
        padding: 0 80px;
    }
}

@media (max-width: 767px)
{   
    .opinions {
        flex-direction: column;
        margin-left: 20px;
        margin-right: 20px;
    }

    .opinions-column{
        flex: initial;
        width: calc(100% - 40px);
    }

    .opinion-content {
        margin-top: 5px;
        margin-bottom: 20px;
    }

    .opinion-stars {
        font-size: 1.8rem;
    }
}




body {
    margin-bottom: 300px;
    background-color: #fff;
}





footer {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 300px;
    background-color: #131314;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    flex-direction: column;
    padding-top: 50px;
}


.footer-top {
    width: 100%;
    height: 230px;
    padding: 60px 5% 30px 5%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content:space-between;

}

.footer-top img {
    height: auto;
    width: 250px;
    margin-top: -30px;
}

.footer-menu-wraper {
    display: flex;
    gap: 50px;
    height: 100%;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.footer-menu a {
    text-decoration: none;
    color: #8a8a8a;
}

.footer-menu a:hover {
    color: #a5a5a5;
}

.footer-bottom {
    width: 100%;
    min-height: 70px;
    padding: 10px 5%;
    box-sizing: border-box;
    text-align: right;
    border-top: 1px solid #383838;
}

.footer-bottom h2 {
    text-align: right;
    margin: 0;
    padding: 0;
}

.footer-bottom a {
    text-decoration: none;
    color: #8a8a8a;
    text-align: right;
}

.footer-bottom a:hover {
    color: #a5a5a5;
}

.footer-contact {
    height: 100%;
    width: 250px;
}

.footer-contact h2 {
    text-align: right;
    padding: 0;
    font-size: 1rem;
}

.footer-contact h3 {
    font-weight: 400;
    margin: 0;
    padding: 0;
    text-align: right;
    font-size: 0.9rem;
    color: #aaa;
    padding-bottom: 10px;
    text-decoration: none;
}

.footer-contact h3 a {
    color: #aaa;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .footer-top img {
        display: none;
    }

    .footer-menu-wraper {
        gap: 5%;
    }

    .footer-contact {
        width: auto;
    }

}

@media (max-width: 575px) {
    .footer-menu-wraper {
        gap: 10px;
    }

    .footer-menu,
    .footer-menu a,
    .footer-menu h2 {
        padding: 0;
        margin: 0;
    }
    .footer-menu h2 {
        padding-bottom: 20px;
    }
    .footer-bottom h2 {
        font-size: 0.9rem;
    }

}



    

.contact-container {
    width: 100%;
    height: 100vh;
    display: flex;
    background-color: #fff;
}

.contact-information {
    display: flex;
    width: 50vw;
    height: 100%;
    padding-left: 12vh;
    box-sizing: border-box;
    flex-direction: column;
    background-color: #c5e21f;
    background-image: url(img/contact-background.jpg);
    padding-top: 16vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* .contact-information h1,
.contact-information h2,
.contact-information h3 {
    color: #5a6904 !important;
} */

.contact-form {
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    width: 50vw;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 16vh;
    padding-left: 12vh;
    padding-right: 12vh;
    box-sizing: border-box;
    overflow-y: auto;
    
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    border: 2px solid #e9e9e9;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
    color: #505050;
    font-family: "Lato", sans-serif;
    background-color: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #b0cb1f;
    outline: none;
    background-color: #ffffff;
    color: #0a0a0a;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 250px;
}





.checkbox-label {
    display: flex;
    flex-direction: row; 
    cursor: pointer;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    flex-shrink: 0; 
    width: 20px;
    height: 20px;
    border: 2px solid #c5e21f; 
    border-radius: 4px;
    appearance: none; 
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    transition: all 0.2s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0.6);
    transform-origin: 0 0;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: #c5e21f; 
    border-color: #c5e21f;
}

.checkbox-label input[type="checkbox"]:checked::before {
    content: '✔'; 
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}


.checkbox-label span {
    font-size: 0.90rem;
    color: #555;
    margin: 0;
    padding: 0;
    display: block;
    padding-left: 30px;
    font-weight: 400;
}






.submit-btn {
    border: none;
    cursor: pointer;
    display: flex;
    min-height: 45px;
    width: 180px;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    padding-bottom: 2px;
    color: #555;
    justify-content: center;
    align-items: center;
    border-radius: 50px; 
    background-color: #c5e21f;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-box-shadow: 0px 0px 30px -10px #c5e21f;
    -moz-box-shadow: 0px 0px 30px -10px #c5e21f;
    box-shadow: 0px 0px 30px -10px #c5e21f;
    font-family: "Lato", sans-serif;
}

.submit-btn:hover {
    background-color: #000000;
    color: #fff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.loader {
  border: 3px solid #222222;
  border-top: 3px solid #222222;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.submit-btn:hover .loader {
    border: 3px solid #ffffff;
    border-top: 3px solid #fff;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #444;
}

#formMessage {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease;
  margin-top: 0;
  padding: 0;
  border-radius: 6px;
  font-weight: bold;
  width: 100%;
}

#formMessage.show {
  opacity: 1;
  max-height: 100px;
}

.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
}

.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
}


.map-section {
    background-color: #f5f5f5;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 0 0 30px 30px;
}

.maps-container {
    height: 50vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    margin-bottom: 10px;
}

.map {
    width: 45vw;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    display: block;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(104, 104, 104, 0.2);
    
}

.contact-information h1 {
    font-size: 4rem;
    margin: 0;
    margin-bottom: -10px;
    color: #ffffff;
}
.contact-form h1 {
    font-size: 4rem;
    margin: 0;
    margin-bottom: -20px;
    color: #414141;
}
.map-section h1 {
    font-size: 3rem;
    margin: 0;
    color: #b0cb1f;
}

.contact-information h2 {
    font-size: 1.6rem;
    text-align: left;
    color:#ffffff;
    margin: 0;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 5px;
}

.contact-information h3 {
    font-size: 1.3rem;
    text-align: left;
    color:#ffffff;
    margin: 0;
    font-weight: 500;
    padding: 3px;
    padding-left: 5px;
}
.contact-form h3 {
    font-size: 1.3rem;
    text-align: left;
    color:#6d6d6d;
    margin: 0;
    font-weight: 500;
    padding: 3px;
    padding-left: 5px;
}
.map-section h3 {
    font-size: 1.3rem;
    color:#6d6d6d;
    margin: 0;
    font-weight: 500;
    padding: 3px;
    padding-left: 5px;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .contact-information {
        padding-left: 2vh;
        padding-top: calc(2vh + 60px);
    }
    .contact-form {
        padding-left: 2vh;
        padding-right: 2vh;
        padding-top: calc(2vh + 60px);
    }

}

@media (max-width: 991px) {
    .contact-information h1 {
        font-size: 3rem;
    }
    .contact-form h1 {
        font-size: 3rem;
    }
    .map-section h1 {
        font-size: 2rem;
    }

    .contact-information h2 {
        font-size: 1.3rem;
        padding-left: 0;
    }

    .contact-information h3 {
        font-size: 1.1rem;
        padding-left: 0;
    }
    .contact-form h3 {
        font-size: 1.1rem;
    }
    .map-section h3 {
        font-size: 1.1rem;
    }

    .maps-container {
        flex-direction: column;
        height: 70vh;
    }

    .map {
        width: initial;
        flex: 1 1 95vw;
        height: 50%;
    }
}

@media (max-width: 767px) {
    .contact-container {
        flex-direction: column;
        height: auto;
    }

    .contact-information {
        width: 100%;
        min-height: 70vh;
        justify-content: center;
        text-align: center;
        padding: 0 30px;
        margin: 0;
    }

    .contact-form {
        width: 100%;
        min-height: 70vh;  
        justify-content: center;
        text-align: center;
        padding: 0 30px;
        margin: 0;
    }

    .contact-information h3, 
    .contact-information h2,
    .contact-form h3 {
        text-align: center;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .contact-information h3 a {
        text-decoration: none;
        color: #fff;
    }
    
}












/* Ogólna klasa */
.animate-in {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Widoczność po wejściu w viewport */
.animate-in.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Typy animacji */
.fade-left {
    transform: translateX(-40px);
}
.fade-right {
    transform: translateX(40px);
}
.fade-up {
    transform: translateY(40px);
}







.method-container {
    display: flex;
    width: 100%;
    height: auto;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 100px;
    position: relative; 
    overflow: hidden;
}

.method-container h1 {
    font-size: 2.8rem;
    margin: 0;
    color: #414141;
    text-align: left;
    padding: 0 13vw;
}

.method-container h2 {
    font-size: 1.5rem;
    color:#6d6d6d;
    margin: 0;
    font-weight: 500;
    text-align: left;
    padding: 0 calc(13vw + 20px);
}

.faq h2 {
    font-size: 1.2rem;
    color:#6d6d6d;
    margin: 0;
    font-weight: 500; 
    text-align: center;
}

.faq p {
    text-align: justify;
}


.benefits-container
{
    width: 100%;
    height: auto;
    padding: 5px 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.benefits-border
{
    width: 70vw;
    height: auto;
    background-color: #fff;
    border-radius: 40px; 
    text-align: center;
    display: flex;
    justify-content: space-around;
    align-items: top;
    flex-wrap: wrap;
    -webkit-box-shadow: 0px 0px 4px 6px rgba(246, 246, 246, 1);
    -moz-box-shadow: 0px 0px 4px 6px rgba(246, 246, 246, 1);
    box-shadow: 0px 0px 4px 6px rgba(246, 246, 246, 1);
}

.benefits-item
{
    width: 280px;
    height: auto;
    padding: 20px;
    display: inline-block;
    display: flex;
    justify-content: top;
    flex-direction: column;
}

.benefits-item img
{
    width: 130px;
    height: 130px;
    margin: 0 auto 0 auto;
    display: flex;
	justify-content: center;
	align-items: center;
    padding-top: 10px;
}

.benefits-item-title
{
    height: auto;
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin: 5px 0;
}

.benefits-item-description
{
    color: #1c1c1c;
    font-size: 1rem;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
}

.container {
    background-color: #fff;
    color:#c5e21f;
}


.micro-info {
    width: auto;
    min-height: 80px;
    background-color: #c5e21f;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-bottom: 10px;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 5vw;
    padding: 0 5vw;
-webkit-box-shadow: 0px 0px 16px 0px rgba(223, 223, 223, 1);
-moz-box-shadow: 0px 0px 16px 0px rgba(223, 223, 223, 1);
box-shadow: 0px 0px 16px 0px rgba(223, 223, 223, 1);
}

.micro-info h4 {
    display: flex;
    width: auto;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    justify-content: center;
}


@media (max-width: 1399px)
{  
    .method-container h1 {
        font-size: 2.3rem;
        padding: 0 3vw;
    }

    .method-container h2 {
        font-size: 1.2rem;
        padding: 0 calc(3vw + 20px);
    }

    .micro-info h4 {
        font-size: 1.2rem;
    }

    .micro-info {
        min-height: 60px;
   }
}

@media (max-width: 767px)
{  
    .method-container h1 {
        font-size: 2rem;
        padding: 0 1vw;
        text-align: center;
    }

    .method-container h2 {
        font-size: 1.1rem;
        padding: 0 1vw;
        text-align: center;
    }

    .micro-info h4 {
        font-size: 1.1rem;
    }

    .micro-info {
        min-height: 50px;
        margin-left: 30px;
        margin-right: 30px;
   }
}



#teddy-eddie-color .micro-info,
.table-wrapper .teddy-eddie-color
{
    background-color: #0095da !important;
}

#teddy-eddie-color .information-title,
#teddy-eddie-color .teddy-eddie-color {
    color: #0095da !important;
}


#savvy-ed-color .micro-info,
.table-wrapper .savvy-ed-color
{
    background-color: #1768b3 !important;
}

#savvy-ed-color .information-title,
#savvy-ed-color .savvy-ed-color {
    color: #1768b3 !important;
}

#the-bearton-twins-color .micro-info,
.table-wrapper .the-bearton-twins-color
{
    background-color: #fad10b !important;
}

#the-bearton-twins-color .information-title,
#the-bearton-twins-color .the-bearton-twins-color {
    color: #fad10b !important;
}

#primary-masters-color .micro-info,
#exam-masters-color .micro-info,
.table-wrapper .primary-masters-color,
.table-wrapper .exam-masters-color
{
    background-color: #c5e21f !important;
}

#primary-masters-color .information-title,
#primary-masters-color .primary-masters-color,
#exam-masters-color .information-title,
#exam-masters-color .exam-masters-color {
    color: #c5e21f !important;
}


#bold-wings-color .micro-info,
.table-wrapper .bold-wings-color
{
    background-color: #ef0863 !important;
}

#bold-wings-color .information-title,
#bold-wings-color .bold-wings-color {
    color: #ef0863 !important;
}


#courses-method {
    background-color: #fff !important;
    margin: 0;
}


.courses-development-path-container {
    width: 100vw;
    height: auto;
    margin: 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    padding-top: 60px;
}

.courses-development-path {
    width: 80%;
    aspect-ratio: 18 / 7;
    pointer-events: none;
    background-image: url(img/development-path.webp);
    background-size: contain;
    background-repeat: no-repeat;
}

@media (max-width: 1199px)
{  
    .courses-development-path {
        width: 100%;
    }
}

@media (max-width: 991px)
{  
    .courses-development-path {
        width: 100%;
        aspect-ratio: 20 / 23;
        background-image: url(img/development-path-min.webp);
    }
}







































#price-header {
    margin-top: 60px;
}

#price-header .information-title {
    text-align: center;
}

#price-header .header-button {
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-section {
    width: 100%;
    background-color: #fff;
    padding: 40px 12% 100px 12%;
    box-sizing: border-box;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
}
.table-wrapper {
    margin-bottom: 3rem;
}

.table-wrapper h2 {
    color: #fff;
    font-size: 1.8rem;
    display: block;
    padding: 1.2rem 0;
    font-weight: 600;
    margin: 0;
    border-radius: 20px 20px 0 0;
}
table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    font-size: 1rem;
}

th, td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
    background-color: #f1f3ff;
}
th {
    background-color: #dee5fa;
    font-weight: bold;
}
tr:last-child td {
    border-bottom: none;
}


@media (max-width: 767px)
{  
    .pricing-section {
        padding: 40px 15px 100px 15px;
    }

    th, td {
        padding: 0.5rem;
    }

    .table-wrapper h2 {
        font-size: 1.6rem;
    }
    table {
        font-size: 0.8rem;
    }
}





.benefits {
    width: 100%;
    min-height: 800px;
    background-color: #fff;
    display: flex;
    gap: 20px;
    padding: 4%;
    box-sizing: border-box;
    flex-wrap: wrap;
    -webkit-box-shadow: 0px 0px 24px 0px rgba(159, 159, 159, 1);
    -moz-box-shadow: 0px 0px 24px 0px rgba(159, 159, 159, 1);
    box-shadow: 0px 0px 24px 0px rgba(159, 159, 159, 1);
    overflow: hidden;
    position: relative;
}

.benefits-box-1 {
    flex: 1 1 15rem;
    aspect-ratio: 1 / 1.5;
}

.benefits-box-2 {
    flex: 1 1 33rem;
    gap: 20px;
    display: flex;
    flex-direction: column;
    aspect-ratio: 1 / 0.8;
}

.benefits-box-3 {
    flex: 1 1 33rem;
    gap: 20px;
    display: flex;
    flex-direction: row;
    aspect-ratio: 1 / 0.8;
}

.benefits-box-small {
    flex: 1 1 50%;
    display: flex;
    gap: 20px;
}

.benefits-box-small-last {
    flex: 1 1 65%;
    display: flex;
    flex-direction: column;
}

.benefits-content-box-1 {
    width: 100%;
    height: 100%;
    background-color: #d6e782;
    border-radius: 35px;
}

.benefits-content-box-2 {
    width: 100%;
    height: 100%;
    background-color: #f7ffcf;
    border-radius: 35px;
}

.benefits-content-box-3 {
    flex: 1 1 40%;
    height: 100%;
    background-color: #f0f0f0;
    border-radius: 35px;
}

.benefits-content-box-4 {
    height: 100%;
    flex: 1 1 60%;
    background-color: #f7ffcf;
    border-radius: 95px;
    background-image: url(img/benefits-image.webp);
    background-size: cover;        
    background-position: center;    
    background-repeat: no-repeat;
}

.benefits-content-box-5 {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    border-radius: 35px;
    aspect-ratio: 1 / 2.3;
}

.benefits-content-box-6 {
    width: 100%;
    height: 50%;
    background-color: #d6e782;
    border-radius: 95px;
    
}

.benefits-content-box-1,
.benefits-content-box-2,
.benefits-content-box-3,
.benefits-content-box-5,
.benefits-content-box-6 {
    padding: 25px;
    box-sizing: border-box;
    display: flex;
    align-items: center;      
    justify-content: center;  
    flex-direction: column;
}

.benefits-content-box-1 h3,
.benefits-content-box-3 h3,
.benefits-content-box-5 h3,
.benefits-content-box-6 h3{
    all: unset;
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
    padding: 0;
    font-weight: 400;
    display: inline;
    line-height: 1.8rem;
    color: #637215; 
}

.benefits-content-box-3 h3,
.benefits-content-box-5 h3 {
    color: #505050 !important;
}

.benefits-content-box-1 img,
.benefits-content-box-3 img,
.benefits-content-box-5 img,
.benefits-content-box-6 img{
    max-width: 80px;
    margin-top: -20px;

}

.benefits-content-box-2 h1 {
    font-size: 2.8rem;
    text-align: center;
    line-height: 2.8rem;
    color: #5a632d;
}

@media (max-width: 1799px) {
    .benefits-content-box-5 {
        aspect-ratio: 1 / 2.8;
    }
}

@media (max-width: 1459px) {
    .benefits {
        padding: 4% 12%;
    }
    .benefits-box-3 {
        aspect-ratio: 2 / 1;
    }

    .benefits-content-box-1 h3,
    .benefits-content-box-3 h3,
    .benefits-content-box-5 h3,
    .benefits-content-box-6 h3{
        font-size: 1.2rem;
        line-height: 1.5rem;
    }
    .benefits-content-box-1 img,
    .benefits-content-box-3 img,
    .benefits-content-box-5 img,
    .benefits-content-box-6 img{
        max-width: 60px;
        margin-top: -10px;

    }
}

@media (max-width: 1229px) {
    .benefits-content-box-1 h3,
    .benefits-content-box-3 h3,
    .benefits-content-box-5 h3,
    .benefits-content-box-6 h3{
        font-size: 1.4rem;
        line-height: 1.5rem;
    }

}

@media (max-width: 1042px) {
    .benefits {
        padding: 4% 12%;
    }

    .benefits-box-1 {
        order: 3;
        aspect-ratio: initial;
        width: 100%;
        height: auto;
    }
    .benefits-box-2 {
        order: 1;
    }
    .benefits-box-3 {
        flex-direction: column-reverse;
        order: 2;
        aspect-ratio: initial;
    }

    .benefits-box-small-last {
        flex: 1 1 50%;
        flex-direction: row;
        height: auto;
    }

    .benefits-box-small {
        flex: 1 1 20%;
        display: flex;
        gap: 20px;
    }
    .benefits-content-box-1 {
        width: 100%;
        height: auto;
    }
    .benefits-content-box-5 {
        width: 100%;
        height: auto;
        background-color: #f0f0f0;
        border-radius: 35px;
        aspect-ratio: initial;
    }
    .benefits-content-box-6 {
        width: 100%;
        height: auto;  
    }

    .benefits-content-box-1 h3,
    .benefits-content-box-3 h3,
    .benefits-content-box-5 h3,
    .benefits-content-box-6 h3{
        font-size: 1.2rem;
        line-height: 1.1rem;
    }

    .benefits-content-box-2 h1 {
        font-size: 2.2rem;
        line-height: 2.3rem;
    }
}

@media (max-width: 575px) {
    .benefits {
        padding: 30px;
    }
    .benefits-box-1 {
        aspect-ratio: 3 / 2;
    }
    .benefits-box-3 {
        aspect-ratio: 1 / 1.2;
    }
    .benefits-content-box-1 h3,
    .benefits-content-box-3 h3,
    .benefits-content-box-5 h3,
    .benefits-content-box-6 h3{
        font-size: 0.9rem;
        line-height: 1rem;
    }
}





.who-we-need {
    width: 100%;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    padding: 50px;
    box-sizing: border-box;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

video {
    width: 100%;
    max-width: 440px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1042px) {
    .who-we-need {
        flex-direction: column;
        padding: 50px 130px;
    }
}

@media (max-width: 767px) {
    .who-we-need {
        padding: 60px 30px;
    }
}

.partnership-faq .faq {
    padding-top: 120px;
    padding-bottom: 120px;
}

.partnership-faq {
    border-radius: 0 0 30px 30px;
}






.privacy-policy-wrapper {
    height: auto;
    width: 100%;
    background-color: white;
    margin-top: 100px;
    margin-bottom: 100px;
}

.privacy-policy-box {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10%;
    font-size: 1.1rem;
}






