.cswp-section {
    padding: 100px 0;
    background: #F7F7F7;
}
.cswp-section__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.cswp-section__header {
    text-align: center;
    margin-bottom: 32px;
}
.cswp-section__title {
    font-size: 38px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 8px;
    line-height: 52px;
}
.cswp-section__subtitle {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
    line-height: 28px;
}
.cswp-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.cswp-section__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
  	align-items: flex-start;
    gap: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.cswp-section__card-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 27px;
}
a.cswp-section__card-link {
    font-size: 14.5px;
    font-weight: 500;
    color: #3d40cf;
    text-decoration: none;
    line-height: 18px;
  	transition: all ease-in-out 0.2s;
}
a.cswp-section__card-link:hover {
    border-bottom: 1px solid #3040CF;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
    .cswp-section__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cswp-section__title {
        font-size: 32px;
        line-height: 42px;
    }
}
@media (max-width: 600px) {
    .cswp-section {
        padding: 56px 0 72px;
    }
    .cswp-section__container {
        padding: 0 20px;
    }
    .cswp-section__header {
        margin-bottom: 32px;
    }
    .cswp-section__title {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 10px;
    }
    .cswp-section__grid {
        grid-template-columns: 1fr;
    }
    .cswp-section__card {
        padding: 22px 20px 18px;
    }
    .cswp-section__card-title {
        font-size: 16px;
    }
}
