
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Montserrat', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #ffffff 100%);
            color: #000000;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

    .top-images {
        display: flex;
        justify-content: center;
      width: 100%;
    }
    .top-images img {
        width: 100%;
        height: auto;
        border-radius: 5px;
    }
    .text-block {
        padding: 15px;
        font-size: 18px;
        line-height: 1.6;
        color: #000000;
    }
    
    .btn {
        display: block;
        width: 85%;
        margin: 10px auto;
        padding: 14px;
        background: linear-gradient(90deg, #e8e8e8, #f0f0f0);
        color: #000000;
        font-size: 17px;
        border-radius: 8px;
        border: 2px solid #333333;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn:hover {
        opacity: 0.9;
        background: linear-gradient(90deg, #f0f0f0, #ffffff);
        transform: scale(1.02);
    }

    .waiting {
        margin-top: 20px;
    font-size: 18px;
        padding-bottom: 40px;
    }