.cards-section-wrapper {
    width: 100%;
    background-color: #FFFFFF;
    padding: 120px 0;
}

.cards-container {
    text-align: center;
    max-width: 1200px;
}

.cards-header {
    margin-bottom: 64px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.category-badge {
    background-color: #FEF2F2;
    color: #590401;
    height: 32px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(89, 4, 1, 0.1);
}

.cards-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #0A0A0A;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cards-title .highlight {
    color: #590401;
}

.cards-subtitle {
    font-size: 16px;
    color: #64748B;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #F1F4F9;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-image-wrapper {
    position: relative;
    height: 240px;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-icon-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-icon-badge img {
    width: 18px;
    height: 18px;
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 12px;
}

.card-content p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cards-section-wrapper {
        padding: 40px 0;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .cards-title {
        font-size: 45px;
        line-height: 1.1;
    }
}