/* EMD Optimization Styles for CubanCigarsForSale.com */

/* About Page Styles */
.about-ccfs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-ccfs-container h1 {
    color: #2c3e50;
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.brand-story, .why-ccfs, .brand-values {
    margin-bottom: 50px;
}

.brand-story h2, .why-ccfs h2, .brand-values h2 {
    color: #8B4513;
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 2px solid #8B4513;
    padding-bottom: 10px;
}

.testimonials {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.testimonials blockquote {
    border-left: 4px solid #8B4513;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
}

/* Why Choose Us Page Styles */
.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.lead {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.advantage-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.advantage-card h2 {
    color: #8B4513;
    font-size: 22px;
    margin-bottom: 15px;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.comparison-table th {
    background: #8B4513;
    color: white;
    padding: 15px;
    text-align: left;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Trust Signals Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.trust-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.trust-item strong {
    display: block;
    font-size: 32px;
    color: #8B4513;
    margin-bottom: 10px;
}

.trust-item span {
    color: #666;
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    margin: 50px 0;
}

.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin: 50px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: white;
    color: #8B4513;
    font-weight: bold;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #8B4513;
}

/* Footer EMD Optimization */
.footer-copyright {
    text-align: center;
    padding: 20px;
    background: #2c3e50;
    color: white;
}

/* Breadcrumb EMD Style */
.breadcrumb a:first-child {
    font-weight: bold;
    color: #8B4513;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .about-ccfs-container h1,
    .why-choose-container h1 {
        font-size: 28px;
    }
}