#trialFormModal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    align-items: center;
    justify-content: center;
}

#trialFormContent {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    animation: fadeIn 0.3s ease-out;
}

#trialFormContent h3 {
    margin-top: 0;
    font-size: 20px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

#trialFormContent input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

#trialFormContent button {
    width: 100%;
    padding: 12px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
}

#trialFormContent button:hover {
    background-color: #1da851;
}

#trialFormContent span {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 24px;
    color: #888;
    cursor: pointer;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

#trialFormContent span:hover {
    color: #333;
}

@keyframes fadeIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}