.str-consulting-wrap-4d7b71cd {
    font-family: 'DM Sans', sans-serif;
    padding: 50px 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.str-header {
    text-align: center;
    margin-bottom: 30px;
}
.str-header-kicker {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}
.str-header-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}
.str-header-desc {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #555;
    line-height: 1.6;
}
.str-btn {
    display: inline-block;
    color: #ffffff !important;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.str-btn:hover {
    transform: translateY(-2px);
    color: #ffffff !important;
}

.str-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

@media (max-width: 768px) {
    .str-services-grid {
        grid-template-columns: 1fr;
    }
}

.str-card {
    background: #fff;
    padding: 24px;
    border-radius: 4px;
    border: 0.5px solid #eaeaea;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.str-card-header {
    display: flex;
    align-items: flex-start; /* Changed from center to align with multi-line text */
    gap: 12px;
}

.str-card-icon {
    font-size: 24px;
    line-height: 1; /* Ensure icon doesn't add vertical space */
    flex-shrink: 0; /* Prevent icon from shrinking */
    margin-top: 2px; /* Slight adjustment to align with text baseline visually */
}
.str-card-icon svg {
    width: 24px;
    height: 24px;
}
.str-card-title {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    margin: 0;
    line-height: 1.3;
    font-family: 'DM Sans', sans-serif; /* Override to match specs instead of serif */
    text-transform: none;
}

.str-card-content {
    margin-top: 15px;
    height: auto;
    opacity: 1;
    overflow: visible;
    transition: all 0.2s ease;
}

.str-card-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 10px 0;
}

.str-card-cta {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

/* Hover State - Desktop Only */
@media (min-width: 769px) {
    .str-card:hover {
        background: #F4FAF7;
        /* border-left-color set dynamically */
    }
}

/* Filter animation */
.str-card.hidden-by-filter {
    display: none;
}