/* style.css */
body { font-family: 'Segoe UI', Arial, sans-serif; background: #f4f4f4; color: #333; margin: 0; padding: 20px; }
h1 { color: #0056b3; border-bottom: 2px solid #0056b3; padding-bottom: 10px; }

.produkt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; margin-top: 20px; }
.produkt-card { background: white; padding: 20px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); text-align: center; }
.produkt-card img { max-width: 120px; height: auto; margin-bottom: 15px; }
.preis { font-weight: bold; color: #0056b3; font-size: 1.2em; margin: 10px 0; }
.btn-anfrage { padding: 10px; width: 100%; background: #0056b3; color: white; border: none; border-radius: 4px; cursor: pointer; font-weight: bold; }
.btn-anfrage:hover { background: #004494; }