.newsletter-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.newsletter-popup-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.newsletter-popup-header {
    background-color: #2e7061;
    color: white;
    padding: 20px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter-popup-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.popup-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.popup-close-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.newsletter-popup-body {
    padding: 30px;
}

.newsletter-popup-body p {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

.recaptcha-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

/* Hide reCAPTCHA badge */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    display: none !important;
}

/* Alternative method to hide reCAPTCHA badge */
iframe[src*="recaptcha"] {
    display: none !important;
}

/* Hide reCAPTCHA v2 checkbox if present */
.g-recaptcha {
    display: none !important;
}

/* Additional methods to hide reCAPTCHA badge */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
}

/* Hide reCAPTCHA iframe elements */
iframe[src*="recaptcha"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Hide reCAPTCHA elements by class */
.recaptcha-badge-container {
    display: none !important;
    visibility: hidden !important;
}

/* Hide any element with recaptcha in the class name */
[class*="recaptcha"] {
    display: none !important;
    visibility: hidden !important;
}

.interest-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.interest-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.2s;
    position: relative;
}

.interest-option:hover {
    border-color: #2e7061;
    background-color: #f8f9fa;
}

.interest-option input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #2e7061;
    border-radius: 4px;
    margin-right: 15px;
    position: relative;
    background-color: white;
    transition: all 0.2s;
}

.interest-option input[type="checkbox"]:checked + .checkmark {
    background-color: #2e7061;
}

.interest-option input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.option-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.newsletter-popup-footer {
    padding: 20px 30px 30px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.popup-cancel-btn {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.popup-cancel-btn:hover {
    background-color: #5a6268;
}

.popup-subscribe-btn {
    background-color: #2e7061;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.popup-subscribe-btn:hover {
    background-color: #245a4f;
}

.popup-message {
    margin-top: 10px;
    font-size: 14px;
    padding: 10px;
    border-radius: 4px;
}

.popup-message.error {
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

.popup-message.success {
    color: #28a745;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

@media (max-width: 768px) {
    .newsletter-popup-content {
        width: 95%;
        margin: 20px;
    }
    
    .newsletter-popup-header {
        padding: 15px;
    }
    
    .newsletter-popup-header h3 {
        font-size: 18px;
    }
    
    .newsletter-popup-body {
        padding: 20px;
    }
    
    .newsletter-popup-footer {
        padding: 15px 20px 20px;
        flex-direction: column;
    }
    
    .popup-cancel-btn,
    .popup-subscribe-btn {
        width: 100%;
    }
} 