.hiw-section {
    padding: 100px 0;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden; /* For side decorations */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hiw-decoration-left {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.05;
    width: 400px;
    pointer-events: none;
}

.hiw-decoration-right {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.05;
    width: 300px;
    pointer-events: none;
}

.hiw-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hiw-eyebrow {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-cyan, #07B8A6);
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.hiw-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark, #1E293B);
    line-height: 1.2;
}

.hiw-header h2 span {
    font-weight: 800;
    color: var(--color-cyan, #07B8A6);
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    padding: 0 48px;
    position: relative;
    z-index: 2;
}

.hiw-card {
    background-color: #FAFAFA; /* Off-white for slight contrast */
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid var(--color-cyan, #07B8A6); /* Cyan bottom border as requested */
    display: flex;
    flex-direction: column;
}

.hiw-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    background-color: #FFFFFF;
}

.hiw-card-watermark {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.04;
    width: 120px;
    height: 120px;
    pointer-events: none;
}

.hiw-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--color-cyan, #07B8A6);
}

.hiw-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark, #1E293B);
    margin-bottom: 16px;
}

.hiw-card p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1; /* Pushes link to bottom */
}

.hiw-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-cyan, #07B8A6);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
    margin-top: auto;
}

.hiw-link:hover {
    color: #059688;
}

@media (max-width: 1024px) {
    .hiw-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .hiw-grid {
        grid-template-columns: 1fr;
    }
    .hiw-decoration-left, .hiw-decoration-right {
        display: none; /* Hide on mobile */
    }
}
