* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-size: 2.5em;
}

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

.pricing-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 280px;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* .pricing-card:hover {
    transform: translateY(-10px);
} */

.pricing-card.popular {
    border: 2px solid #3498db;
}

.pricing-card.enterprise {
    border: 2px solid #9b59b6;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #3498db;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h2 {
    color: #2c3e50;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.price {
    margin-bottom: 20px;
}

.amount {
    font-size: 2.5em;
    font-weight: bold;
    color: #3498db;
}

.pricing-card.enterprise .amount {
    color: #9b59b6;
}

.period {
    color: #7f8c8d;
    font-size: 0.9em;
}

.features {
    flex-grow: 1;
}

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

.features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.features li:last-child {
    border-bottom: none;
}

.features li.disabled {
    color: #bdc3c7;
}

.btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    outline: none;
}

.btn:hover {
    background: #2980b9;
}

.btn:active {
    transform: translateY(1px);
}

.pricing-card.popular .btn {
    background: #3498db;
}

.pricing-card.popular .btn:hover {
    background: #2980b9;
}

.pricing-card.enterprise .btn {
    background: #9b59b6;
}

.pricing-card.enterprise .btn:hover {
    background: #8e44ad;
}

@media (max-width: 1200px) {
    .pricing-card {
        width: calc(50% - 20px);
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
        max-width: 350px;
        margin-bottom: 20px;
    }
    
    h1 {
        font-size: 2em;
    }
} 