.cf7-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-width: 600px;
    width: 90%;
    line-height: 1.6;
    font-size: 16px;
    color: #333;
    animation: slideIn 0.4s ease-out;
}

.cf7-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    backdrop-filter: blur(3px);
    animation: fadeIn 0.3s ease-out;
}

.cf7-modal-content {
    margin-bottom: 20px;
}

.cf7-modal-content p {
    margin: 0 0 1.5em 0;
}

.cf7-modal-content p:first-child {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1em;
}

.cf7-modal-content p:last-child {
    margin-bottom: 0;
}

.cf7-modal-content ul, 
.cf7-modal-content ol {
    margin: 1em 0;
    padding-left: 2em;
}

.cf7-modal-footer {
    text-align: center;
    margin-top: 30px;
}

.cf7-modal button {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 20px;
}

.cf7-modal button:hover {
    background: #34495e;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 600px) {
    .cf7-modal {
        padding: 25px;
        font-size: 15px;
    }
}

