body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 40px;
    box-sizing: border-box;
    color: #333;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    align-items: stretch;
}

.plan {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-basis: 33.333%;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.plan.popular {
    border-color: #6300EE;
    border-width: 2px;
    transform: scale(1.05);
    z-index: 1;
}

.most-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #6300EE;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.plan h2 {
    font-size: 28px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 15px;
}

.plan .description {
    font-size: 14px;
    color: #666;
    min-height: 40px;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 10px;
}

.price .amount {
    font-size: 52px;
    font-weight: bold;
}

.price .period {
    font-size: 16px;
    color: #666;
}

.billed-annually {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.buy-btn {
    background-color: #6300EE;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.tax-info {
    font-size: 12px;
    color: #888;
    margin-bottom: 30px;
}

.features {
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features p {
    font-weight: bold;
    margin-bottom: 15px;
}

.features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.features ul li i {
    color: #6300EE;
    margin-right: 10px;
    width: 20px;
}

.features-btn {
    background-color: white;
    color: #6300EE;
    text-decoration: none;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    display: block;
    border: 1px solid #ddd;
    margin-top: auto;
} 