.whywork-section {
    padding: 0 5% 2rem;
    height: 100%;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.whywork-section .section-header {
    margin: 0;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whywork-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0 0 16px 0;
    color: #1e293b;
}

@media (max-width: 768px) {
    .whywork-section .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 640px) {
    .whywork-section .section-title {
        font-size: 1.75rem !important;
        word-wrap: break-word !important;
    }
}

@media (max-width: 480px) {
    .whywork-section .section-title {
        font-size: 1.75rem !important;
    }
}

.whywork-section .section-content {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1400px;
    width: 100%;
    flex-wrap: wrap;
    margin: 4rem auto;
}

.whywork-section .content-block {
    flex: 1 1 0px;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whywork-section .content-block:hover {
    background-color: #fafafa;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    border-color: #d1d5db;
}

.whywork-section .content-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    min-height: 4rem;
}

.whywork-section .content-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
}

.whywork-section .content-body {
    text-align: center;
}

.whywork-section .content-body p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.7;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whywork-section .section-content {
        gap: 1.5rem;
        padding: 1.5rem 4%;
    }
    
    .whywork-section .content-block {
        min-width: 100%;
        padding: 2rem 1.5rem;
    }
}