/* Process Page Styles */
.process-list-section {
    padding-top: 20px;
}

.title-with-icon {
    display: flex;
    align-items: center;
    gap: 15px;
}

.title-with-icon .icon-box {
    color: #128c5e;
    background: #f0fdf4;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.process-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 18px;
    margin: 0 0 12px;
    color: #1e293b;
    font-weight: 700;
}

.process-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}

.read-more:hover {
    gap: 12px;
}

/* Card Colors */
.card-blue {
    border-top: 4px solid #3b82f6;
}

.card-blue .card-icon {
    background: #eff6ff;
    color: #3b82f6;
}

.card-blue .read-more {
    color: #3b82f6;
}

.card-green {
    border-top: 4px solid #10b981;
}

.card-green .card-icon {
    background: #f0fdf4;
    color: #10b981;
}

.card-green .read-more {
    color: #10b981;
}

.card-teal {
    border-top: 4px solid #14b8a6;
}

.card-teal .card-icon {
    background: #f0fdfa;
    color: #14b8a6;
}

.card-teal .read-more {
    color: #14b8a6;
}

.card-red {
    border-top: 4px solid #ef4444;
}

.card-red .card-icon {
    background: #fef2f2;
    color: #ef4444;
}

.card-red .read-more {
    color: #ef4444;
}

.card-light-green {
    border-top: 4px solid #84cc16;
}

.card-light-green .card-icon {
    background: #f7fee7;
    color: #84cc16;
}

.card-light-green .read-more {
    color: #84cc16;
}

.card-purple {
    border-top: 4px solid #a855f7;
}

.card-purple .card-icon {
    background: #faf5ff;
    color: #a855f7;
}

.card-purple .read-more {
    color: #a855f7;
}

/* Pagination */
.process-footer {
    margin-top: 40px;
    text-align: center;
}

.process-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.page-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.page-btn.active {
    background: #128c5e;
    border-color: #128c5e;
    color: #fff;
}

.page-btn:hover:not(.active):not(:disabled) {
    background: #f8fafc;
    border-color: #128c5e;
    color: #128c5e;
}

.pagination-info {
    font-size: 13px;
    color: #94a3b8;
}

.back-link:hover {
    background: #f8fafc;
    color: #128c5e !important;
    border-color: #128c5e !important;
}