﻿.subscription-card {
    width: 500px;
    margin: 0 auto;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.subscription-header {
    background-color: #343A40;
    padding: 20px;
}

.logo-img {
    max-width: 140px;
}

.subscription-body {
    padding: 20px;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: bold;
}

.plan-subtitle {
    color: #666;
    margin-bottom: 12px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
}

    .feature-list li {
        margin-bottom: 6px;
    }

.benefit-section {
    background-color: #e6f0fa;
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-section {
    padding: 20px;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-info {
    text-align: left;
}

.price-amount {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
}

.price-per {
    font-size: 0.9rem;
    color: gray;
    margin-left: 3px;
}

.price-save {
    color: #2a5dab;
    font-weight: bold;
    font-size: 1.45rem;
}

.btn-monthly {
    background-color: #2a5dab;
    color: #fff;
    border: none;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

.btn-yearly {
    background-color: #fff;
    color: #2a5dab;
    border: 2px solid #2a5dab;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

    .btn-monthly:hover,
    .btn-yearly:hover {
        opacity: 0.9;
    }

.or-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #666;
    font-weight: bold;
    font-size: 0.85rem;
}

    .or-divider::before,
    .or-divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #ccc; /* continuous line */
    }

    .or-divider:not(:empty)::before {
        margin-right: .75em;
    }

    .or-divider:not(:empty)::after {
        margin-left: .75em;
    }
