/**
 * Simple Steps Styles
 */

.muvd-simple-steps {
    display: block;
}

.simple-steps-container {
    border-radius: 15px;
    padding: 60px 0;
    text-align: center;
}

/* Main Title */
.simple-steps-title {
    margin-bottom: 50px;
}

.simple-steps-title h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

/* Steps Grid */
.simple-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

/* Individual Step Item */
.simple-step-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Step Number Circle */
.step-number-circle {
    z-index: 10;
    background-color: #000;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 0;
}

/* Step Image */
.step-image {
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid rgba(216, 202, 187, 0.5);
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Step Content */
.step-content {
    padding: 0 10px;
}

.step-title {
    font-size: 17px;
    font-weight: bold;
    font-family: "Nunito", serif;
    margin: 0 0 10px 0;
}

.step-subtitle {
    margin: 0;
    line-height: 1.5;
}

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