/* Grundlegende Reset und Typografie */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f4f4f4;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
padding: 0 20px;
}
/* Header und Navigation */
header {
background: #004a99; /* BBA Akzentfarbe (Beispiel) */
color: white;
padding-top: 15px;
min-height: 70px;
border-bottom: #007bff 3px solid;
}
header h1 {
float: left;
}
header nav {
float: right;
margin-top: 10px;
}
header ul {
list-style: none;
}
header ul li {
display: inline;
margin-left: 20px;
}
header a {
color: white;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
/* Hero Section */
#hero {
background: #ffffff;
color: #333;
padding: 100px 0;
text-align: center;
}
#hero h2 {
font-size: 45px;
margin-bottom: 10px;
}
.cta-button {
display: inline-block;
padding: 10px 20px;
background: #007bff;
color: white;
text-decoration: none;
border-radius: 5px;
margin-top: 20px;
}
/* Produkt Grid */
#produkte, #anwendungen, #kontakt {
padding: 60px 0;
background: white;
margin-top: 20px;
}
.product-grid {
display: flex;
justify-content: space-around;
gap: 20px;
}
.product-item {
flex-basis: 30%;
background: #f4f4f4;
padding: 20px;
border-radius: 5px;
text-align: center;
}
/* Footer */
footer {
background: #333;
color: white;
text-align: center;
padding: 20px 0;
margin-top: 20px;
}
/* Formular Styling (rudimentär) */
form label {
display: block;
margin-top: 10px;
}
form input[type=“text“], form input[type=“email“] {
width: 100%;
padding: 8px;
margin-top: 5px;
border: 1px solid #ccc;
}















