/* Pricing Page Styles */
.pricing-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.pricing-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    border: 2px solid #4e73df;
    position: relative;
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #4e73df;
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #4e73df;
    text-align: center;
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: #6c757d;
    display: block;
    margin-top: 5px;
    font-weight: normal;
}

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

.features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.features li:before {
    content: "✓";
    color: #4e73df;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: #4e73df;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.btn-pricing:hover {
    background: #2e59d9;
    color: white;
    text-decoration: none;
}

.contact-info {
    text-align: center;
    margin-top: 50px;
    color: #6c757d;
}

.contact-info a {
    color: #4e73df;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 350px;
    }
}
