body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.counter-wrapper {
    display: flex;
    justify-content: space-around;
    width: 80%;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.counter-box {
    background: #f9f9f9;
    width: 150px;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.counter-box .count {
    font-size: 36px;
    font-weight: bold;
    color: #149b10;
    margin-bottom: 10px;
}

.counter-box h3 {
    font-size: 18px;
    color: #4f4e28;
    margin-top: 0;
    text-transform: capitalize;
}

.counter-box:hover .count {
    color: #ffaf40;
}
