.panel-section {
    background-color: #121212;
}

.panel-header {
    margin-bottom: 36px;
}

.panel-description {
    margin-bottom: 20px;
}


.our-approach, .why-us-section {
    background-color: #232323;
}

.section-title, .panel-header {
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 44px;
    color: #e6e6e6;
}

/*TODO: this card style could be stored into a class of it's own -- it display one column in mobile screen and
   transition into two column in tab screen
   */
.approach-cards-container, .why-us-cards-container {
    display: grid;
    gap: 32px;
}

.faq-section-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}





@media (min-width: 768px) {
    .section-title {
        text-align: center;
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 52px;
    }

    .approach-cards-container, .why-us-cards-container {
        grid-template-columns: 1fr 1fr;
        row-gap: 32px;
        column-gap: 24px;
    }

    .c-standard-card__description {
        max-width: 370px;
    }
}


@media (min-width: 1024px) {

    .approach-cards-container, .why-us-cards-container {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1250px;
        justify-self: center;
        padding-right: 80px;
        padding-left: 80px;

    }

}