.what-we-offer-section-two {
    padding: 60px 20px;
    background-color: var(--section-bg-color, #F0E9D8);
}

.what-we-offer-container-two {
    max-width: 1200px;
    margin: 0 auto;
}

.what-we-offer-title-two {
    text-align: center;
    margin-bottom: 40px;
    color: var(--title-color, #2E2A25);
    font-size: 36px;
    font-weight: 600;
}

.what-we-offer-grid-two {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.what-we-offer-card-two {
    flex: 1 1 300px; /* Base width of 300px, but can grow */
    background-color: var(--card-bg-color, #FDFAF5);
    border-top: 4px solid var(--border-color, #E2725B);
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Soft shadow */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.what-we-offer-card-two:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-title-two {
    font-size: 22px;
    font-weight: 600;
    color: var(--card-title-color, #2E2A25);
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-description-two {
    font-size: 16px;
    color: var(--text-color, #2E2A25);
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-topics-list-two {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto; /* Push to bottom if content varies */
}

.card-topics-list-two li {
    font-size: 15px;
    color: var(--text-color, #2E2A25);
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    line-height: 1.5;
}

.card-topics-list-two li::before {
    content: "•";
    color: var(--border-color, #E2725B);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 991px) {
    .what-we-offer-card-two {
         flex: 1 1 45%; /* 2 per row on tablets */
    }
}

@media (max-width: 767px) {
    .what-we-offer-grid-two {
        flex-direction: column;
    }
    
    .what-we-offer-card-two {
        flex: 1 1 100%; /* Stack on mobile */
    }
    
    .what-we-offer-title-two {
        font-size: 28px;
    }
}
