.tfa-cta {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.tfa-cta h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
}

.tfa-cta p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #666;
}

.tfa-btn {
    display: inline-block;
    background-color: #0073aa;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.tfa-btn:hover, 
.tfa-btn:focus {
    background-color: #005177;
    color: #fff;
    text-decoration: none;
}

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

.tfa-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    border-radius: 8px;
    z-index: 99999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.tfa-popup-title {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.8rem;
    color: #333;
    line-height: 1.2;
}

.tfa-modal-close {
    position: absolute !important;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.tfa-modal-close:hover {
    color: #333;
}

body.tfa-modal-open {
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .tfa-cta {
        padding: 20px;
    }
    .tfa-cta h3 {
        font-size: 1.3rem;
    }
    .tfa-modal {
        width: 95%;
        padding: 20px;
    }
}
