/* --- PASTE THE CSS FOR THE SECTION YOU WANT TO PREVIEW HERE --- */

/* --- Main Section Container --- */
.freshness-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.freshness-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 50px;
    color: #212529;
}

/* --- Steps Container (Flexbox for alignment) --- */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px; /* Fixed width for each step block */
}

.icon-box {
    width: 180px;
    height: 180px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    background-color: #fdfdfd;
}

.icon-box img {
    max-width: 80px;
    height: auto;
}

.step p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

/* --- Arrow between steps --- */
.arrow {
    display: flex;
    align-items: center;
    height: 180px; /* Aligns with the icon box height */
    padding: 0 10px;
}

.arrow img {
    width: 30px;
    height: auto;
}

/* --- "Please Note" Section --- */
.please-note {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.please-note span {
    display: inline-block;
    background-color: #fff;
    color: #e53935;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 5px 10px;
    border: 1px solid #e53935;
    border-radius: 6px;
    white-space: nowrap;
}

.please-note p {
    font-size: 1rem;
    color: #555;
    margin: 0;
    text-align: left;
}

/* --- Responsive for Mobile --- */
@media (max-width: 900px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    .arrow {
        display: none; /* Hide arrows on mobile */
    }
    .step {
        margin-bottom: 30px;
        width: 100%; /* Allow steps to take full width */
    }
    .please-note {
        flex-direction: column;
        text-align: center;
    }
    .please-note p {
        text-align: center;
        margin-top: 10px;
    }
}
