.main-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.description-box {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.description-box h2 {
    padding-bottom: 1rem;
}

.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.about-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.process-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.process-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 180px;
    background: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.one-step {
    background: url(assets/aditi.png);
    /* Placeholder color */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.two-step {
    background: url(assets/abhyas.png);
    /* Placeholder color */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.three-step {
    background: url(assets/prayog.png);
    /* Placeholder color */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.four-step {
    background: url(assets/pravar.png);
    /* Placeholder color */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.five-step {
    background: url(assets/bodh.png);
    /* Placeholder color */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


.card-content {
    padding: 1.5rem;
    flex: 1;
}

.step-number {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-title {
    color: #191a1a;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-description {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (min-width: 1024px) {
    .process-container {
        grid-template-columns: repeat(5, 1fr);
    }
    .about-container{
        
    }
}

@media (max-width: 768px) {
    .process-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .card-image {
        height: 150px;
    }
}