.easy-section {
    max-width: 1100px;
    width: 100%;
    margin-top: 60px;
}

.easy-header {
    text-align: center;
    margin-bottom: 60px;
}

.easy-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.easy-subtitle {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
}

.easy-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.img-col {
    flex: 1;
    position: relative;
}

.product-photo {
    width: 100%;
    height: auto;
    display: block;
    padding: 20px;
    box-sizing: border-box;
}

.text-col {
    flex: 1.2;
    padding-top: 10px;
}

.routine-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.routine-list::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 30px;
    left: 7px;
    width: 2px;
    background-color: #E16203;
    z-index: 0;
}

.routine-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 40px;
}

.routine-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    background-color: #E16203;
    border-radius: 50%;
    z-index: 1;
}

.item-title {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #000;
    letter-spacing: 0.5px;
}

.item-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

@media (max-width: 1024px){
    .easy-section {
        margin: 0;
        padding: 0 20px;
    }

    .easy-grid{
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .img-col {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .easy-title {
        font-size: 24px;
    }

    .easy-header {
        margin-bottom: 20px;
    }

    .product-photo {
        display: block;
        box-sizing: border-box;
        align-self: center;
        padding: 0 20px;
        width: 320px;
        height: 320px;
        margin: 0 auto;
    }
}