body {
    text-align: center;
}

body h2 {
    font-size: 45px;
}

.why-choose__container {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    padding: 20px 35px;
}

@media (min-width: 769px) {
    .why-choose__container {
        grid-template-columns: repeat(2,1fr);
    }
}

.why-choose__answer {
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.why-choose__answer-title {
    font-size: 28px;
    color: #5271ff;
}

.why-choose__answer-body {
    font-size: 16px;
    padding: 20px 50px;
}

.market-facts-container {
    background-image: url("/assets/images/gradient.png"); /* The image used */
    background-color: #cccccc; /* Used if the image is unavailable */
    height: 250px; /* You must set a specified height */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    text-align: center;
    color: white;
    padding: 40px 10px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

.market-facts-container h2 {
    font-size: 35px;
}

@media (min-width: 769px) {
    .market-facts-container {
        padding: 40px 150px;
        height: 200px;
    }

    .market-facts-container h2 {
        font-size: 45px;
    }
}

.pricing-structure__title {
    background-color: #f2f4f5;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 25px;
    padding-bottom: 50px;
}

.pricing-structure__container {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    background-color: #f2f4f5;
    padding: 20px 0px;
    border-bottom: 2px solid #000;
    padding-bottom: 75px;
}


.pricing-structure__container h3 {
    margin-top: 0px;
    text-decoration: underline;
    text-align: left;
}

.pricing-structure__container ul {
    list-style-type: none; 
    padding-left: 0px;
    text-align: left;
    width: 600px;
    margin: auto;
}

.pricing-structure__container li {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.pricing-structure__container li svg {
    margin-right: 5px;
}

.pricing-structure__card {
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 2px 6px 0 rgb(5 21 46 / 10%), 0 2px 6px 0 rgb(21 60 245 / 2%), 0 -2px 4px 0 rgb(21 60 245 / 4%);
    width: 80%;
    height: 90%;
    margin: auto;
    padding: 20px;
    margin-top: 20px;
}

.pricing-structure__check-list {
    display: none;
}

@media (min-width: 769px) {
    .pricing-structure__card {
        height: 80%;
    }

    .pricing-structure__check-list {
        display: block;
    }
}

.pricing-structure__card h3 {
    font-size: 35px;
    text-align: center;
    text-decoration: none;
    padding-top: 20px;
}

.pricing-structure__card p {
    margin-bottom: 30px;
}

.pricing-structure__card a {
    background-color: hotpink;
    padding: 15px 80px;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    transition: 0.3s;
    box-shadow: 0 2px 6px 0 rgb(5 21 46 / 10%), 0 2px 6px 0 rgb(21 60 245 / 2%), 0 -2px 4px 0 rgb(21 60 245 / 4%);
}

.pricing-structure__card a:hover {
    background-color: #5271ff;
    transition: 0.3s;
    padding: 18px 85px;
}

.brands__logo-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.brands__logo-container div {
    width: 220px;
    padding: 20px;
}

.brands__logo-container div img {
    width: 100%;
}