@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

#popup {
    position: fixed;
    font-family: 'Poppins'!important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 25px;
    width: 700px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    z-index: 1000;
}
.popup-content{
    font-family: 'Poppins'!important;
}
.popup-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
}

.popup-section {
    margin-bottom: 30px;
    text-align: center;
}

.popup-section h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #333;
}

.popup-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.popup-btn {
    background-color: #cd000e;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 30px;
    display: block;
    margin: 30px auto 0;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.popup-btn:hover {
    background-color: #0056b3;
}


.highlight {
    font-weight: 800;
    color: #cd000e;
}
