.whyUsSection {
    padding: 60px 90px; 
    color: #fff;
    background-color: #34292D;
}
@media (min-width: 569px) and (max-width: 1024px) {
    .whyUsSection {
        padding: 17px 40px;
    }
}

@media (max-width: 568px) {
    .whyUsSection {
        padding: 17px 16px;
    }
}

.whyUsSection .container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.whyUsSection .title {
    text-transform: uppercase;
    color: #E45D50; 
    margin-bottom: 20px;
    font-family: 'Bungee Inline', sans-serif; 
    font-size: 40px;
    text-align: left; 
}

.whyUsSection .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 20px;
    align-items: stretch;
    height: 100%;
}

@media (max-width: 1024px) {
    .whyUsSection .grid {
        grid-template-columns: 1fr;
    }
}

.whyUsSection .left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.whyUsSection .block {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
    height: 100%;
}

.whyUsSection .block h3 {
    font-family: 'Mulish', sans-serif; 
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.whyUsSection .block p {
    font-family: 'Mulish', sans-serif; 
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}
.whyUsSection .top {
    padding-top: 150px;
    background-color: #603142;
}
.whyUsSection .bottom {
    padding-top: 150px;
    background-color: #510671;
}

.whyUsSection .rightContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.whyUsSection .right {
    background-color: #383838;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    padding-top: 150px;
}

.whyUsSection .ctaWrapper {
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
    width: 100%;
}

.whyUsSection .ctaButton {
    background: transparent;
    border: 2px solid #E45D50; 
    color: #fff;
    padding: 12px 20px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-family: 'Mulish', sans-serif; 
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.whyUsSection .ctaButton:hover {
    background-color: #E45D50;
    color: #fff;
}
