body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f9f9f9;
    color: #333;
}

.how-it-works {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.step-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    width: 31%;
}

.step-image-container {
    height: 240px; /* Set a fixed height for all image containers */
    overflow: hidden; /* Ensure the image doesn't overflow */
}

.step-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Change from 'cover' to 'contain' to prevent cropping */
    display: block;
}

.step-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.step-number {
    color: #F98820; /* Brand orange color */
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}


/* Mobile Styles */
@media (max-width: 992px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    .step-card {
        width: 80%;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    .step-card {
        width: 100%;
    }
    .step-title {
        font-size: 20px;
    }
    .step-description {
        font-size: 15px;
    }
} 