.main-btn{
    padding: .5rem 1rem;
    background: #C40C19;
    border-radius: 5px;
    font-size: 1.5rem;
    color: white;
    font-weight: 400;
    transition: all .2s ease;
    cursor: pointer;
    width: fit-content;
    margin: 1rem 0;
}
.main-btn:hover{
    text-decoration: none;
    background: #9b0d18;
    color: #fff;
}
.main-btn-wrapper{
    display: flex;
    flex-direction: column;
}

.button-container {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.problems-btn {
    text-align: center;
    width: 94%;
    background: linear-gradient(135deg, #EC0553, #73B93B, #EC0553);
    background-size: 200% 100%;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 23px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: gradientFlow 3s ease infinite;
    text-decoration: none;
    display: inline-block;
}

.problems-btn--blue {
    background: linear-gradient(135deg, #6b48ff, #00ddeb, #6b48ff);
    animation: gradientFlow 3s ease infinite;
    background-size: 200% 100%;
}

.problems-btn:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.problems-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


@media (max-width: 768px) {
    .problems-btn {
        text-align: center;
        padding: 10px 12px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .problems-btn {
        text-align: center;
        padding: 10px 16px;
    }
}


.order-container {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
}

.order-img {
    width: 100%;
    height: auto;
    cursor: pointer;
}



.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-1 {
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    max-width: 650px;
    width: 90%;
    position: relative;
    text-align: center;
    font-size: 18px;
}

.modal-close {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 22px;
    cursor: pointer;
    color: #888;
}
.modal-close:hover {
    color: #000;
}
