
.process-steps-wrapper {
max-width: 600px;
margin: 0 auto;
}

.process-step-mobile {
background: white;
border-radius: 12px;
padding: 20px;
box-shadow: 0 2px 15px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step-mobile:hover {
transform: translateY(-2px);
box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.step-indicator {
position: relative;
flex-shrink: 0;
}

.step-number {
width: 40px;
height: 40px;
background: linear-gradient(135deg, #1a4b8c, #2c6cc4);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 1.1rem;
box-shadow: 0 3px 10px rgba(26, 75, 140, 0.3);
}

.step-connector {
position: absolute;
top: 40px;
left: 50%;
transform: translateX(-50%);
width: 2px;
height: 60px;
background: linear-gradient(to bottom, #1a4b8c, #e9ecef);
}

.step-icon {
width: 40px;
height: 40px;
background: #f8f9fa;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: #1a4b8c;
font-size: 1.1rem;
}

.step-title {
font-size: 1.1rem;
font-weight: 600;
color: #1a4b8c;
}

.step-description {
color: #6c757d;
font-size: 0.95rem;
line-height: 1.5;
}

.step-highlight {
font-size: 0.85rem;
font-weight: 500;
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
.cscs-process {
    padding: 2rem 0;
}

.process-step-mobile {
    padding: 16px;
    margin-bottom: 20px;
}

.step-number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

.step-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

.step-title {
    font-size: 1rem;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 1rem;
}
}

/* Desktop enhancements */
@media (min-width: 768px) {
.process-steps-wrapper {
    max-width: 800px;
}

.process-step-mobile {
    padding: 25px 30px;
}

.step-content {
    margin-left: 25px !important;
}
}
/* Additional CSS for new sections */
.cscs-process .process-step {
background: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.cscs-process .process-step:hover {
transform: translateY(-5px);
}
.cscs-process .step-number {
width: 50px;
height: 50px;
background: #1a4b8c;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
font-size: 1.5rem;
font-weight: bold;
}
.cscs-faq .accordion-button {
font-weight: 600;
}
.cscs-faq .accordion-button:not(.collapsed) {
background-color: #e7f1ff;
color: #1a4b8c;
}

.card-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* MOBILE = 2 cards per row */
    gap: 12px;
}

@media (min-width: 576px) {
    .card-type-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .card-type-grid { grid-template-columns: repeat(3, 1fr); }
}

.card-type-tile {
    border-radius: 10px;
    padding: 0.25rem 0.6rem;
    border: 1px solid #d3d9e5;
    background-color: #fdfefe;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: left;
}
.card-type-tile strong {
    display: block;
    font-size: 0.92rem;
}
.card-type-tile span {
    font-size: 0.78rem;
    color: #6c757d;
}
.card-type-tile[data-type="green"] { border-left: 4px solid #22c55e; }
.card-type-tile[data-type="blue"] { border-left: 4px solid #0ea5e9; }
.card-type-tile[data-type="gold"] { border-left: 4px solid #fbbf24; }
.card-type-tile[data-type="black"]{ border-left: 4px solid #111827; }
.card-type-tile[data-type="red"]  { border-left: 4px solid #ef4444; }

.card-type-tile:hover {
    box-shadow: 0 4px 14px rgba(15,23,42,0.08);
    transform: translateY(-1px);
}
.card-type-tile.selected {
    border-color: #1a4b8c;
    background-color: #f1f5ff;
}

.card-type-tile .tile-content strong {
    font-size: 16px;
    display: block;
}

.card-type-tile .tile-content span {
    font-size: 13px;
    color: #6c757d;
}

.tile-check {
    font-size: 20px;
    color: #1a4b8c;
    opacity: 0;
    transition: 0.2s ease;
    float: right
}

.card-type-tile.selected {
    border-color: #1a4b8c;
    background: #f1f6ff;
}

.card-type-tile.selected .tile-check {
    opacity: 1;
}


.badge-urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background-color: rgba(243, 107, 79, 0.1);
    color: #f36b4f;
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.85rem;
}


.badge-urgency-card {
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background-color: rgba(243, 107, 79, 0.1);
    color: #f36b4f;
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.85rem;
}



.steps-small {
    font-size: 14px;
    font-weight: 500;
}

.step-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f4f8ff;
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid #e0e7f5;
    color: #1a345b;
    white-space: nowrap;
}

.step-badge .dot {
    background: #1a4b8c;
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
}

.card-details {
    display: grid;
    gap: 15px;
}

/* .detail-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
} */

.detail-icon {
    font-size: 20px;
    color: #1a4b8c;
    width: 28px;
}

.detail-label {
    font-weight: 600;
    color: #333;
}

.card-buttons .btn {
    border-radius: 6px;
}

.detail-item{
  margin-bottom: 0rem !important;
}