body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #0A0B3A;
    background: url('hintergrund_landingpage.jpg') no-repeat center center fixed;
    background-size: cover;
}
header {
    background: rgba(10, 11, 58, 0.8);
    color: white;
    padding: 30px 10%;
    text-align: center;
    position: relative;
}
header img {
    position: absolute;
    top: 10px;
    left: 4%;
    width: 100px;
    height: auto;
}
header h1 {
    margin: 0;
    font-size: 2.5em;
}
header p {
    margin: 10px 0;
    font-size: 1.3em;
}
section {
    padding: 95px 10%;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    margin: 30px auto;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
section h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #0A0B3A;
}
section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #0A0B3A;
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.feature1, .feature2 {
    padding: 25px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 2px solid #0A0B3A;
    position: relative;
    height: 250px;
}
.feature1 {
    color: white;
}
.feature2 {
    color: #0A0B3A;
}
.feature h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}
.feature p {
    font-size: 1.1em;
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    width: calc(100% - 40px);
}
.feature img {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
}
.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #0A0B3A;
    color: white;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    margin-top: 180px;
}
.btn:hover {
    background-color: #3a3b78;
}
footer {
    text-align: center;
    padding: 20px 10%;
    background: rgba(10, 11, 58, 0.8);
    color: white;
}
footer p {
    font-size: 1em;
    margin: 0;
}
