/* Cheques Price Comparison Page Styles */

#cheques_price_comparison {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

#cheques_price_comparison h1 {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#cheques_price_comparison .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

/* Price Guarantee Section */
.price-guarantee {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    flex-shrink: 0;
    text-align: center;
    line-height: 1.2;
}

.guarantee-text {
    flex: 1;
}

.guarantee-text h3 {
    color: #d63031;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Pricing Section */
.pricing-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #2d3436;
    font-size: 1.8rem;
    position: relative;
}

.pricing-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.cta-button-container {
    text-align: center;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
    text-decoration: none;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.pricing-table th {
    background: linear-gradient(135deg, #2d3436, #636e72);
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

.pricing-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-table tr.even-row {
    background-color: #f8f9fa;
}

.chequesplus-column {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e) !important;
    font-weight: bold;
    color: #2d3436;
}

.best-price {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
}

/* Features Section */
.features-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.features-section h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #2d3436;
    font-size: 1.8rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.feature-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}

.feature-card h4 {
    margin-bottom: 10px;
    color: #2d3436;
}

.feature-card p {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-card small {
    color: #6c757d;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    padding: 40px 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-section h2 {
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Disclaimer */
.disclaimer {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #6c757d;
    border-left: 4px solid #dee2e6;
}

.disclaimer p {
    margin-bottom: 10px;
}

.disclaimer p:last-child {
    margin-bottom: 0;
}

/* Why Buy From Us Link */
.why-buy-link {
    text-align: center;
    margin-top: 20px;
}

.why-buy-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.why-buy-link a:hover {
    color: #764ba2;
}

/* Responsive Design */
@media (max-width: 768px) {
    #cheques_price_comparison h1 {
        font-size: 2rem;
        padding: 30px 15px;
    }
    
    .price-guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-icon {
        margin-bottom: 15px;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 10px 5px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-section,
    .features-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    #cheques_price_comparison {
        padding: 10px;
    }
    
    .pricing-table {
        font-size: 0.8rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 8px 3px;
    }
}
