* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f3f4f6;
    font-family: Inter, sans-serif;
}

.pwc-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding: 120px 80px;
    background: #f3f4f6;
    overflow: hidden;
}

.pwc-left {
    width: 42%;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.pwc-subtitle {
    color: #2563eb;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 700;
}

.pwc-left h2 {
    margin-top: 20px;
    font-size: 72px;
    line-height: 1;
    font-weight: 700;
    color: #111827;
}

.pwc-right {
    width: 58%;
    display: flex;
    flex-direction: column;
    gap: 160px;
}

.pwc-card {
    background: #fff;
    border-radius: 28px;
    padding: 60px;
    min-height: 320px;
    position: sticky;
    top: 120px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.5s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.pwc-card:hover {
    transform: translateY(-10px);
}

.pwc-tab {
    position: absolute;
    top: -24px;
    left: 50px;
    background: white;
    padding: 14px 30px;
    border-radius: 14px 14px 0 0;
    border: 1px solid rgba(0,0,0,0.08);
    font-weight: 600;
}

.pwc-card h3 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #111827;
}

.pwc-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #6b7280;
}

.card-2 {
    transform: rotate(-1deg);
}

.card-3 {
    transform: rotate(1deg);
}

@media(max-width:991px) {

    .pwc-wrapper {
        flex-direction: column;
        padding: 60px 24px;
    }

    .pwc-left,
    .pwc-right {
        width: 100%;
    }

    .pwc-left {
        position: relative;
        top: 0;
    }

    .pwc-left h2 {
        font-size: 42px;
    }

    .pwc-card {
        position: relative;
        top: 0;
        padding: 40px 30px;
    }

    .pwc-card h3 {
        font-size: 30px;
    }
}
