* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
}

.container1 {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.milestones {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.milestone {
    margin: 10px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e1e1e1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    position: relative;
}

.roti-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.year {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.circle:hover {
    background-color: #f1a31d;
}

.product-display {
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-display img {
    max-width: 100%;
    height: auto;
}
