h1, h2 {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    color: #222222;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

p, li, span {
    font-family: 'Arial', Helvetica, sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #155ab6;
    text-decoration: underline;
}

.contest-winners {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.contest-card {
    text-align: center;
    max-width: 300px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contest-card img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contest-card img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.contest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

ul {
    padding-left: 20px;
}

.return-link {
    font-weight: 500;
    color: #1a73e8;
    transition: color 0.2s ease;
}

.return-link:hover {
    color: #155ab6;
}
