.str-srv-wrapper-87a9c59d {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.str-srv-header {
    margin-bottom: 50px;
}

.str-srv-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1D9E75;
    margin-bottom: 10px;
}

.str-srv-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #222;
    margin: 0;
}

.str-srv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.str-srv-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border: 1px solid #f0f0f0;
}

.str-srv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.str-srv-icon {
    font-size: 2.5rem;
    color: #1D9E75;
    margin-bottom: 20px;
}

.str-srv-icon svg {
    width: 40px;
    height: 40px;
    fill: #1D9E75;
}

.str-srv-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.str-srv-card-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}