.pricing-accordion-container {
    margin: 30px 0;
    width: 100%;
}

.pricing-title {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.pricing-title span {
    font-size: 0.85rem;
    font-weight: normal;
    color: #666;
}

.pricing-periods-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.pricing-period-accordion {
    flex: 1 1 400px;
    max-width: 500px;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.pricing-period-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s;
}

.pricing-period-header:hover {
    filter: brightness(0.95);
}

.pricing-period-header svg {
    transition: transform 0.3s ease;
}

.pricing-period-accordion.is-expanded .pricing-period-header svg {
    transform: rotate(180deg);
}

.pricing-period-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.pricing-period-accordion.is-expanded .pricing-period-content {
    max-height: 10000px; /* arbitrary max height larger than content */
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.pricing-table tr {
    border-bottom: 1px solid #eee;
}

.pricing-table tr:last-child {
    border-bottom: none;
}

.pricing-table th {
    background-color: #f9f9f9;
    text-align: left;
    padding: 12px 20px;
    font-weight: normal;
    width: 40%;
    color: #555;
    border-right: 1px solid #eee;
}

.pricing-table td {
    padding: 12px 20px;
    text-align: right;
    font-weight: bold;
    color: #333;
}
