.pro-result {
    width: 100%;
    height: 100%;
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-y: hidden;
    background: url('/meet/static/images/flyer_1769092247.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 120% 120%; /* Make the background larger than the viewport */
    background-position: 0% 100%; /* Start from bottom-left */
    /* Animation settings */
    animation: bg-move 30s linear infinite;
}

@keyframes bg-move {
    0% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 100% 0%;
    }
}

.pro-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-start;
}

.pro-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 1.5rem;
    width: 280px;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pro-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.pro-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: #2c3e50;
}

.pro-card p {
    margin: 0.2rem 0;
    color: #555;
    font-size: 1rem;
}

.pro-result .pro-card .btn {
    margin-top: 1rem;
    align-self: stretch;
    background: #007bff !important;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.5rem 0;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.pro-result .pro-card .btn:hover {
    background: #0056b3;
}