.why-us-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary);
    padding: var(--section-padding);
}

.why-us-container {
    width: 100%;
    max-width: var(--container-width);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.why-us-header {
    text-align: center;
    margin-bottom: 3rem;
}

.content-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    width: 100%;
}

.reasons {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.reason {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reason h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: bold;
}

.reason p {
    line-height: 1.6;
}

.img-panel {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.img-panel img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.img-panel img:hover {
    transform: scale(1.05);
}
