/* Grundlegende Einstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Logo */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #004488;
}

.logo-letters {
    color: #0066CC;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

/* Buttons Allgemein */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: transform 0.1s ease, background-color 0.2s ease;
}

.btn:active {
    transform: scale(0.98);
}

/* Spezifische Buttons */
.btn-whatsapp-header {
    background-color: #25D366;
    color: #fff;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-whatsapp-header:hover {
    background-color: #20ba5a;
}

.btn-whatsapp-large {
    background-color: #25D366;
    color: #fff;
    font-size: 1.1rem;
    margin: 5px;
}

.btn-whatsapp-large:hover {
    background-color: #20ba5a;
}

.btn-phone-large {
    background-color: #ffffff;
    color: #004488;
    font-size: 1.1rem;
    margin: 5px;
}

.btn-phone-large:hover {
    background-color: #f0f0f0;
}

/* Hero Section */
.hero {
    background: #004488;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;          /* Reinweiß für perfekten Kontrast */
    font-weight: 500;        /* Kräftigere Schrift */
    text-shadow: 0 1px 2px rgba(0,0,0,0.3); /* Leicht schattiert für beste Lesbarkeit */
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Raster & Karten */
section {
    padding: 50px 0;
}

h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #111;
}

section > .container > p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 35px auto;
    color: #555;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.card h3 {
    margin-bottom: 15px;
    color: #0066cc;
}

.card ul {
    list-style: none;
}

.card ul li {
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
}

.card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

/* Vorteile */
.benefits {
    background: #fff;
}

.benefit-item {
    text-align: center;
    padding: 15px;
}

.benefit-item span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.benefit-item h3 {
    margin-bottom: 8px;
}

/* Kontakt-Karten */
.contact-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.direct-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-contact-card {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-contact-card .icon {
    font-size: 2rem;
    margin-right: 15px;
}

.btn-contact-card .text {
    display: flex;
    flex-direction: column;
}

.btn-contact-card strong {
    font-size: 1.1rem;
}

.btn-contact-card small {
    font-size: 0.85rem;
    opacity: 0.85;
}

.btn-contact-card.whatsapp {
    background-color: #e8fadf;
    color: #128C7E;
    border: 1px solid #25D366;
}

.btn-contact-card.phone {
    background-color: #e6f0fa;
    color: #004488;
    border: 1px solid #0066cc;
}

.contact-info {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.95rem;
}

/* Footer */
.site-footer {
    background: #222;
    color: #bbb;
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

.site-footer p {
    margin-bottom: 5px;
}