 .header-buttons-block a {
    width: 120px;
}
.slidepanel-warning__title {
    font-size: 16px;
    letter-spacing: 0.3px;
}
 /* Mobile Screen */
.phone-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.phone {
    position: relative;
    max-width: 280px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.samsung-phone {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 25px;
    position: relative;
}

.samsung-screen {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: transparent;
    border-radius: 20px;
    border: 2px solid #34495e;
    overflow: hidden;
}

.samsung-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.samsung-camera {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #2b2b2b;
    border-radius: 50%;
    z-index: 1;
}

.iphone-phone {
    width: 270px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 30px;
    position: relative;
}

.iphone-screen {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: transparent;
    border-radius: 25px;
    border: 2px solid #2d2d2d;
    overflow: hidden;
}

.iphone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 23px;
}

.iphone-camera {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 15px;
    z-index: 1;
}

@media (max-width: 576px) {
    .samsung-phone,
    .iphone-phone {
        width: 220px;
        height: 460px;
    }

    .iphone-camera {
        width: 76px;
        height: 20px;
    }

    .samsung-camera {
        width: 10px;
        height: 10px;
    }

    .samsung-screen {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .iphone-screen {
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
    }