.tilted-section {
    position: relative;
    margin: 0;
    padding: 2rem min(100px, 5%);
    padding-bottom: 3.5rem;
    z-index: 1;
}

.tilted-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--c-lighter);
    transform: skewY(-1.5deg);
    z-index: -1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}