.ps_payment_success_page {
    margin: 0 auto;
}



.ps_payment_page_section {
    background-color: #111;
    color: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    padding: 10rem 12rem;
    text-align: center;
    margin: 10rem auto;
    border: 1px solid #222;
    width: 100%;
    max-width: max-content;
}

.ps_thank_you_header {
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 4rem;
    letter-spacing: 0.2rem;
}

.ps_success_icon {
    margin: 3rem auto;
    width: 10rem;
    height: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ddd;
    border-radius: 0.5rem;
}

.ps_success_icon img {
    width: 100%;
    height: 100%;
}

.ps_success_message {
    font-size: 1.8rem;
    margin-bottom: 4rem;
    line-height: 1.5;
}

.ps_action_buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 50rem;
    margin: 0 auto;
}

.ps_btn {
    display: block;
    width: 100%;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    border: none;
    border-radius: 0.3rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ps_btn-primary {
    background-color: #fff;
    color: #000;
}

.ps_btn-primary:hover {
    background-color: #f0f0f0;
    color: #000000;
}

.ps_btn-secondary {
    background-color: #222;
    color: #fff;
}

.ps_btn-secondary:hover {
    background-color: #333;
}

/* Responsive Design */
@media (max-width: 1200px) {
   
}

@media (max-width: 992px) {
  
    
    .ps_payment_page_section {
        max-width: 55rem;
    }
}

@media (max-width: 768px) {
 
    
    .ps_payment_page_section {
        max-width: 50rem;
        padding: 4rem 1.5rem;
    }
    
    .ps_thank_you_header {
        font-size: 3.8rem;
    }
}

@media (max-width: 576px) {

    .ps_payment_page_section {
        max-width: 100%;
    }
    
    .ps_thank_you_header {
        font-size: 3.5rem;
    }
    
    .ps_success_icon {
        width: 9rem;
        height: 9rem;
    }
}

@media (max-width: 425px) {

    
    .ps_thank_you_header {
        font-size: 3.2rem;
    }
    
    .ps_success_message {
        font-size: 1.6rem;
    }
}

@media (max-width: 375px) {

    
    .ps_payment_page_section {
        padding: 3rem 1rem;
    }
    
    .ps_success_icon {
        width: 8rem;
        height: 8rem;
    }
}

@media (max-width: 320px) {
    .ps_thank_you_header {
        font-size: 3rem;
    }
    
    .ps_success_message {
        font-size: 1.5rem;
    }
}