.expectations-section {
    padding: 2rem 1rem;
    align-content: center;
    align-items: center;
}
.final-product-section {
    padding: 2rem 1rem;
    align-content: center;
    align-items: center;
}


.container {
    margin-left:auto;
    margin-right:auto;
    background-color: black;
    border: 4px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    width:70%;
    align-content: center;
    align-items: center;
}

.process-section {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
}
.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.process-card {
    background-color: #fff;
    border: 4px solid #ddd;
    border-radius: 8px;
    flex: 0 0 550px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 4px solid #ddd;
}

.process-card .process-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 325px;
    padding: 1rem;
    text-align: center;
    background-color: black;
}

.tools-section {
    padding: 2rem 1rem;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}


.tool-card {
    background-color: #fff;
    border: 4px solid #ddd;
    border-radius: 8px;
    flex: 0 0 275px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 4px solid #ddd;
}

    .tool-card .tool-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 275px;
        padding: 1rem;
        text-align: center;
        background-color: black;
    }

    .tool-card .tool-content img{
        width:100%;
        background-color: white;
    }