* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #fdf8e7;
    color: #333;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    color: #666;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-box {
    background: white;
    padding: 20px;
    width: 180px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.stat-box h2 {
    font-size: 2rem;
    color: #d4a017;
}

.pin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.pin-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

.pin-card:hover {
    transform: translateY(-5px);
}

.pin-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #eee;
}

.pin-card h3 {
    padding: 15px 15px 5px;
    font-size: 1.1rem;
}

.pin-card p {
    padding: 0 15px 15px;
    color: #777;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
    }

    .stat-box {
        width: 100%;
    }
}