/* Premium Subscription Table Styles */
.premium-subscription-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.subscription-header {
    text-align: center;
    margin-bottom: 40px;
}

.main-title {
    font-size: 28px;
    font-weight: 800;
    color: #FF9800;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: #fff;
	margin-top: 20px;
    margin-bottom: 20px;
}

.special-offer-banner {
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.offer-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.offer-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.offer-text {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
    position: relative;
    transition: all 0.3s ease;
}

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

.featured-plan {
    border-color: #FF9800;
    transform: scale(1.05);
}

.featured-plan:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF9800;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0B1C4B;
    margin-bottom: 15px;
}

.price-section {
    margin-bottom: 10px;
}

.original-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0B1C4B;
}

.price-period {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.plan-description {
    color: #666;
    font-style: italic;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: bold;
}

.feature-item.included .feature-icon {
    background: #4CAF50;
    color: white;
}

.feature-item.excluded .feature-icon {
    background: #f44336;
    color: white;
}

.feature-text {
    flex: 1;
    font-size: 15px;
    color: #333;
}

/* Plan Footer */
.plan-footer {
    text-align: center;
}

.value-badge {
    margin-bottom: 15px;
}

.value-text {
    background: #FF9800;
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
}

.subscribe-button {
    display: block;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.silver-button {
    background: #0B1C4B;
    color: white;
}

.silver-button:hover {
    background: #1a2d5c;
    color: #FF9800;
}

.gold-button {
    background: #FF9800;
    color: white;
}

.gold-button:hover {
    background: #ffa726;
    transform: translateY(-2px);
    color: #333;
}

.platinum-button {
    background: #0B1C4B;
    color: white;
}

.platinum-button:hover {
    background: #1a2d5c;
    color: #FF9800;
}

/* Payment Security Section */
.payment-security-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
    border: 2px solid #C7C8C6;
}

.security-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.paypal-logo-container {
    text-align: center;
    flex-shrink: 0;
}

.paypal-logo {
    width: 80px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.paypal-logo:hover {
    filter: brightness(1);
}

.paypal-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003087;
    letter-spacing: 0.5px;
}

.security-text h4 {
    color: #0B1C4B;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.security-text p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.security-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.security-badge {
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #0B1C4B;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* FAQ Section */
.faq-section {
    background: white;
	border: 2px solid #C7C8C6;
    border-radius: 15px;
    padding: 40px;
}

.faq-title {
    text-align: center;
    color: #0B1C4B;
    margin-bottom: 30px;
    font-size: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: #f8f9fa;
    padding: 25px;
	border: 1px solid #B8B8B8;
    border-radius: 10px;
    border-left: 4px solid #FF9800;
}

.faq-item h4 {
    color: #0B1C4B;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-plan {
        transform: none;
    }
    
    .featured-plan:hover {
        transform: translateY(-5px);
    }
    
    .security-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .special-offer-banner {
        padding: 12px 20px;
    }
    
    .offer-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .payment-security-section {
        padding: 30px 20px;
    }
    
    .security-features {
        justify-content: center;
    }
    
    .faq-section {
        padding: 30px 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .premium-subscription-section {
        padding: 10px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .faq-section {
        padding: 20px 15px;
    }
    
    .security-features {
        flex-direction: column;
        align-items: center;
    }
    
    .security-badge {
        width: 100%;
        text-align: center;
    }
    
    .current-price {
        font-size: 1.8rem;
    }
    
    .plan-name {
        font-size: 1.5rem;
    }
}