.phone-container {
    position: relative;
}

.phone-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* Ensure SVG is above the image */
}

.phone-screen {
    position: absolute;
    left: 10px; /* Offset to align with SVG screen */
    z-index: 1; /* Below the SVG */
}

.phone-container.large {
    width: 332px;
    height: 689px;
}

.phone-container.small {
    width: 254px;
    height: 569px;
}


.phone-screen.large {
    width: 312px;
    top: 0;
    height: 685px;
}

.phone-screen.small {
    width: 234px;
    top: 20px;
    height: 519px;
}

