.hero-section h1 {
    font-size: 48px;
    font-weight: bold;
}

.hero-section p {
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.6;
}

.hero-section .get-started {
    background-color: #010333;
    color: #f1f1f2;
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.hero-section .get-started:hover {
    /* background-color: #f1f1f2; */
    background-color: transparent;
    outline: 2px solid #010333;
    color: #010333;
    /* color: #010333; */
}

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

.team-section {
    padding: 60px 20px;
    background-color: #092813;
    color: #f1f1f2;
}

.team-card {
    background-color: #f1f1f2;
    color: #010333;
    border: none;
    text-align: center;
    padding: 20px;
}

.team-card img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

.footer {
    background-color: #010333;
    color: #f1f1f2;
    text-align: center;
}

.col-md-6 {
    height: 30vh;
}

.step {
    height: 100%;
}

#testimonials {
    padding: 10vw 0;
    padding-bottom: 0;
}

#testimonials h1 {
    text-align: left !important;
    margin-bottom: 30px;
    color: #010333;
    font-size: 3rem;
    margin-bottom: 100px;
}

#testimonials .testimonial-card {
    padding: 20px;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    align-items: left;
    text-align: left;
    height: 250px;
    border: 1px solid #092813;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    background: #01033322;
    transition: all 0.3s ease;
}

#testimonials .testimonial-card .quote {
    font-style: italic;
    margin-bottom: 15px;
    color: #000;
}

#testimonials .testimonial-card .author {
    font-weight: bold;
    margin-bottom: 5px;
    color: #000;
}

#testimonials .testimonial-card .position {
    color: #777;

}

@media (max-width: 991px) {
    .hero-section {
        flex-direction: column-reverse;
    }

    #testimonials .testimonial-card {
        padding: 10px;
    }

    #testimonials h1 {
        font-size: 2.5rem !important;
    }

    #testimonials .row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-section h1 {
        font-size: 32px;
        line-height: 5px;
    }

    .hero-section p {
        font-size: 15px;
        line-height: 20px;
        padding-top: 0px !important;
    }

    .team-card img {
        width: 100px;
        height: 100px;
    }
    #testimonials .col-md-6 {
        height: max-content!important;
    }
}