/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 30.07.2025, 20:35:51
    Author     : shrotty
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
body {
    background-color: #f8f8f8;
    color: #1d1d1f;
}
header {
    background-color: #E6E6FA;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
}
header h1 img {
    height: 32px;
    margin-right: 0.75rem;
}
nav {
    margin-top: 1rem;
}
nav a {
    margin-left: 1rem;
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 600;
    display: inline-block;
}
@media (min-width: 600px) {
    nav {
        margin-top: 0;
    }
}
.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(145deg, #ffffff, #e8e8e8);
}
.hero h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.25rem;
    color: #555;
}
@media (min-width: 768px) {
    .hero h2 {
        font-size: 3rem;
    }
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    justify-items: center;
    text-align: center;
}
.feature {
    background-color: #008B8B;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: 400px;
    width: 100%;
}
.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.feature p {
    color: #F0FFFF;
}
.contact {
    padding: 4rem 2rem;
    background-color: #ffffff;
    text-align: center;
}
.contact h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.contact p {
    font-size: 1rem;
    color: #444;
    margin: 0.5rem 0;
    word-wrap: break-word;
}
.comparison {
    padding: 4rem 2rem;
    text-align: center;
}
.comparison h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}
table {
    margin: 0 auto;
    border-collapse: collapse;
    width: 100%;
    max-width: 800px;
    background: #E6E6FA;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
th, td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}
th {
    background-color: #008B8B;
    font-weight: 600;
}
@media (max-width: 600px) {
    th, td {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}
footer {
    background-color: #f2f2f2;
    padding: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #999;
}

.vergleich {
    background-color: #B0C4DE;
}

/* Zusatz CSS */

.example {
    margin-left: auto;
    width: 25%;
    justify-content: center;
    align-items: center;
    gap: 20px;
    display: inline;
}



