.subscription-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.subscription-options {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    gap: 2rem;
}

.option {
    flex: 1;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.option:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.option h3 {
    color: #333;
    margin-bottom: 1rem;
}

.option p {
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-trial, .btn-subscribe {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-trial {
    background-color: #4CAF50;
    color: white;
}

.btn-subscribe {
    background-color: #2196F3;
    color: white;
}

.btn-trial:hover {
    background-color: #45a049;
}

.btn-subscribe:hover {
    background-color: #1976D2;
}
