
/* Responsive Design */
@media (max-width: 460px) {
    .desktop-content {
        display: none;
    }

    .mobile-content {
        display: block;
    }



}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal h2 {
    color: #1a4079;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.modal p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
}

.modal-btn-primary {
    background: linear-gradient(90deg, #1a4079 60%, #e63946 100%);
    color: white;
}

.modal-btn-secondary {
    background: #25d366;
    color: white;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 0.5rem;
}

.close:hover {
    color: #1a4079;
}




.content-box {
    max-width: 900px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(26,64,121,0.10), 0 1.5px 8px rgba(26,64,121,0.08);
    padding: 2.5rem 2rem;
    border: 1.5px solid #e6eaf3;
}

@media (max-width: 600px) {
    .content-box {
        padding: 1.2rem 0.5rem;
    }
}

  
  