.str-hero-wrapper-4b7faeac {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 12px;
}

.str-hero-content {
    flex: 1 1 500px;
}

.str-hero-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1D9E75; /* Updated to primary site color */
    margin-bottom: 15px;
}

.str-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #222;
}

.str-hero-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.str-hero-cta {
    display: inline-block;
    padding: 15px 30px;
    background: #1D9E75; /* Updated to primary site color */
    color: #ffffff !important;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}

.str-hero-cta:hover {
    background: #0F6E56; /* Updated to secondary site color */
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 158, 117, 0.3);
}

.str-hero-features {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
}

.str-hero-feature-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Added motion */
    cursor: default;
}

.str-hero-feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #1D9E75; /* Highlight border on hover */
}

.str-feature-title {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    transition: color 0.3s ease;
}

.str-hero-feature-item:hover .str-feature-title {
    color: #1D9E75; /* Title changes to primary color on hover */
}

.str-feature-desc {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}
