/* Pricing Page Styles */

/* Content Box */
.content-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-box h3 {
    color: #003066;
    margin: 30px 0 15px;
}

.factors-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.factors-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.factors-list li:last-child {
    border-bottom: none;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ED8000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-card h3 {
    color: #003066;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* Principle Cards */
.principle-card {
    border-left: 4px solid #ED8000;
}

.principle-card h3 {
    color: #003066;
    margin-bottom: 12px;
}

/* Example Cards */
.example-card h3 {
    color: #003066;
    margin-bottom: 15px;
}

.example-card p {
    margin: 8px 0;
}

.example-card strong {
    color: #003066;
}

/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 30px;
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #ED8000;
}

.faq-item h3 {
    color: #003066;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #003066 0%, #004080 100%);
    color: white;
}

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

.cta-section .lead {
    color: #e0e0e0;
}

.cta-section p {
    color: #e0e0e0;
}

.cta-section small {
    color: #d0d0d0;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-card {
        padding: 25px 15px;
    }

    .faq-item {
        padding: 20px;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-group a {
        width: 100%;
        max-width: 300px;
    }
}
