@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

 * { margin:0; padding:0; box-sizing:border-box; font-family: 'Montserrat', sans-serif;}

 body {
   font-family: 'Montserrat', sans-serif;
   background: #f7f9fa;
   color: #333;
 }

.custom-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.custom-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 1011px;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.custom-modal-left {
    flex: 1 1 35%;
    background: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-modal-left img {
    max-width: 100%;
    border-radius: 10px;
}

.custom-modal-right {
    flex: 1 1 60%;
    padding: 60px 20px;
    position: relative;
    font-size: 19px;
}

.custom-modal-close {
    position: absolute;
    top: 20px;
    right: 15px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.custom-modal-right h2 {
    color: #820026;
    margin-top: 0;
    text-align: center;
}

.custom-modal-right p {
    margin: 10px 0;
    color: #004D5E;
}

.custom-modal-button {
    margin-top: 20px;
    background: #820026;
    color: white;
    border: none;
    padding: 9px 23px;
    border-radius: 14px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 700;
}

.custom-modal-button:hover {
    background: #a0003a;
}

.btn-modal{
    display: flex;
    justify-content: center;
}

.sub-title{
    text-align: center;
    color: #820026 !important;
}