.pricing-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    border-radius: 15px;
    margin: 2rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    padding: 0 2rem;
}

.pricing-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.pricing-card.featured {
    border: 2px solid #4a90e2;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 1.5rem;
    right: -2.5rem;
    background: #4a90e2;
    color: white;
    padding: 0.5rem 3.5rem;
    transform: rotate(45deg);
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-header h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    margin: 1.5rem 0;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #4a90e2, #63b3ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.price .duration {
    color: #666;
}

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

.card-features li {
    padding: 0.5rem 0;
    color: #666;
}

.card-features li::before {
    content: '✓';
    color: #4CAF50;
    margin-right: 0.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #4a90e2, #63b3ed);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #ff3333;
}

/* Special Offers Section */
.special-offers {
    margin-top: 4rem;
}

.special-offers h2 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: linear-gradient(135deg, #4a90e2, #63b3ed);
    border-radius: 15px;
    padding: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
    pointer-events: none;
}

.offer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.offer-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.offer-tag {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Payment Details Section */
.payment-details {
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.payment-details h2 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.payment-image-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.payment-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-grid,
    .offers-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .pricing-card,
    .offer-card {
        margin-bottom: 1rem;
    }

    .payment-image-container {
        padding: 0.5rem;
    }

    .payment-details {
        padding: 1rem;
        margin-top: 2rem;
    }
}