.fees-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.fees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.fee-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.fee-card:hover {
    transform: translateY(-5px);
}

.fee-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.fee-range {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.fee-description {
    color: #666;
    line-height: 1.6;
}

.example-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin: 0 -2rem;
}

.example-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.example-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.example-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.example-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.profit-calculation {
    font-weight: 600;
    color: #2c3e50;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    margin: 0 -2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* RTL Support */
[dir="rtl"] .fee-card,
[dir="rtl"] .example-card {
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fees-grid {
        grid-template-columns: 1fr;
    }

    .example-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .fee-amount {
        font-size: 2.5rem;
    }
}
