@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", serif;
    color: #0D3276;
  
}
a{
    color: white;
}
h2{
    font-size: 3.5rem;
   font-weight: 400;
}
h4{
    font-size: 1.5rem;
}
button{
    color: white;
    background: #0A74DA;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
a.btn{
    color: white;
    background: #0A74DA;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}
button:hover {
    background: #0D3276;
}
section{
    margin-bottom: 3rem;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #333;
    color: white;
}
.logo{
    font-size: 1.5rem;
    
}
.logo a{
    text-decoration: none;
}
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    font-size: 1.25rem;
    text-decoration: none;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger .line {
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background: #f4f4f4;
}

.hero-text {
    max-width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem
    ;
}
.hero-text h1{
    font-size: 76px;
    text-transform: capitalize;
    line-height: 1;
}
.hero-text p{
    color: #0A74DA;
    font-size: 2rem;
    line-height: 1;
    font-weight: 500;
}

.hero-image {
    max-width: 800px;
    aspect-ratio: 1;
    width: 100%;
    background: url('/img/hero.jpg') no-repeat center center/cover;
}
.hero-text a.btn{
    max-width: fit-content;
    font-size: 1.25rem;
}
.about {
    display: flex;
    align-items: center;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
}
.about h2{
    text-transform: uppercase;
    font-weight: bold;
}

.about-image {
    max-height: 500px;
    aspect-ratio: 1;
    width: 100%;
    background: url('/img/2.jpg') no-repeat center center/cover;
}

.about-text {
    max-width: 50%;
    padding: 20px;
}
.feature-wrapper{
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
}
.info-block{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.info-block .flex-container{
    flex-direction: column;
}
.flex-container {
    display: flex;
    justify-content: space-around;
    padding: 50px;
    width: 30%;
}

.feature-block {
    text-align: left;
    padding: 20px;
  
}
.feature-block .number {
    font-size: 1.2rem; /* Slightly larger font for better visibility */
    font-weight: bold;
    color: black;
    background-color: #E7E3FB;
    width: 50px; /* Ensures a perfect circle */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 0 15px; /* Centers it above the content */
}


.bottom-image{
    max-height: 800px;
    aspect-ratio: 1;
    max-width: 20%;
    width: 100%;
    background: url('/img/3.jpg') no-repeat center center/cover;
    border-radius: 25px;
}

.faq {
    display: flex;
    justify-content: space-between;
    padding: 50px;
}
.faq-text{
    max-width: 35%;
}

.faq-list {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.question{
    cursor: pointer;
    background-color: unset;
    color: black;
    font-size: 1.2rem;
}
.question:hover{
    background-color: unset;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #ccc;

}

.answer {
    display: none;
    padding: 10px 20px;
}
.reviews{
    text-align: center;
}
.reviews-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
}
.review{
    max-width: 30%;
    text-align: left;
}
.review span{
    color: gray;
}
.cta{
    text-align: center;
}
.cta h2{
    margin-bottom: 1rem;
}
footer {
    background: #333;
    color: white;
    padding: 20px;
    text-align: center;
}
.footer-links{
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.footer-links a{
    color: white;
    text-decoration: none;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: black;
    color: white;
    text-align: center;
    padding: 10px;
}
@media screen and (max-width: 1024px) {
    h2 {
        font-size: 2.5rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.3rem;
    }

    .faq-text {
        max-width: 80%;
    }

    .feature-block {
        max-width: 250px;
    }
}

@media screen and (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    .hero-text{
        align-items: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    .hero {
        gap: 1rem;
        padding: 60px 30px;
    }
    .about{
        padding: unset;
    }
    .faq{
        padding: 0.5rem;
    }
    .faq-text {
        max-width: 90%;
    }
    .bottom-image{
        display: none;
        
    }
    .feature-wrapper{
        flex-wrap: wrap;
    }
    .feature-block {
        max-width: 100%;
    }
    
    .flex-container{
        width: unset;
    }
    .bottom-image {
        max-height: 300px;
        border-radius: 15px;
    }
    .review{
        max-width: 100%;
        padding: 0.5rem;
    }
}

.text{
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}
.text h1, h2, h3{
    font-size: 2rem;
}
.text h3{
    font-weight: 400;
}
.text a{
    text-decoration: underline;
    color: black;
}
.text li{
    list-style-position: inside;
}
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #333;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
    }
    .about{
        flex-wrap: wrap;

    }
    .nav-links.active {
        display: flex;
    }

    .burger {
        display: block;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1{
        font-size: 2rem;
    }
    .hero-text, .hero-image, .about-text, .about-image {
        max-width: 100%;
        width: 100%;
    }
    .flex-container{
        padding: unset;
    }

    .faq {
        flex-direction: column;
    }

    .faq-list {
        width: 100%;
    }
}
@media screen and (max-width: 480px) {
    h2 {
        font-size: 1.75rem;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero {
        padding: 40px 20px;
    }

    .faq-text {
        max-width: 100%;
    }

    .feature-block {
        padding: 15px;
    }

    .feature-block .number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .bottom-image {
        max-height: 250px;
        border-radius: 10px;
    }
}
