.apple-specs{
    max-width:1200px;
    margin:auto;
    font-family:-apple-system, BlinkMacSystemFont;
}

.section{
    padding:60px 20px;
    border-bottom:1px solid #eee;
}

.section h2{
    font-size:34px;
    margin-bottom:30px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card{
    padding:20px;
    border-radius:20px;
    background:#fafafa;
    text-align:center;
    transition:0.3s;
}

.card img{
    max-width:100%;
    border-radius:12px;
    margin-bottom:10px;
}

.card:hover{
    transform:translateY(-5px);
}