.os-81843fdd-wrapper {
    font-family: 'Inter', 'Figtree', sans-serif;
    background-color: #F5F7FA;
    padding: 80px 20px;
}

.os-81843fdd-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.os-81843fdd-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #7A8B99;
    margin-bottom: 10px;
}

.os-81843fdd-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.2;
}

.os-81843fdd-subheading {
    font-size: 18px;
    color: #4B5563;
    line-height: 1.6;
}

.os-81843fdd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.os-81843fdd-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.025);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.os-81843fdd-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1), 0 10px 15px rgba(0, 0, 0, 0.05);
}

.os-81843fdd-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.os-81843fdd-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 15px;
}

.os-81843fdd-card-desc {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.os-81843fdd-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.os-81843fdd-bullet {
    font-size: 14px;
    color: #374151;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.os-81843fdd-bullet i {
    margin-right: 10px;
    margin-top: 4px;
    font-size: 12px;
}

.os-81843fdd-btn {
    display: inline-block;
    text-align: center;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    border: 2px solid;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    font-size: 15px;
}

@media (max-width: 768px) {
    .os-81843fdd-heading {
        font-size: 28px;
    }
    .os-81843fdd-card {
        padding: 30px 20px;
    }
}