body { font-family: 'Inter', sans-serif; color: #333; }
.navbar { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.hero { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); padding: 100px 0; }
.feature-icon { font-size: 2.5rem; color: #0d6efd; margin-bottom: 1.5rem; }
.card { border: none; transition: transform 0.3s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.card:hover { transform: translateY(-5px); }
.pricing-card { border-radius: 15px; min-height: 550px; display: flex; flex-direction: column; }
.pricing-card.popular { border: 2px solid #0d6efd; position: relative; }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #0d6efd; color: #fff; padding: 2px 15px; border-radius: 20px; font-size: 0.8rem; }
.footer { background: #212529; color: #fff; padding: 50px 0; }
.module-list { list-style: none; padding: 0; flex-grow: 1; }
.module-list li { margin-bottom: 10px; display: flex; align-items: center; font-size: 0.95rem; }
.module-list li i { color: #198754; margin-right: 10px; }
.section-padding { padding: 80px 0; }
.font-size-30 { font-size: 30px; }

/* Validation */
.has-error {
    border: 1px solid #a94442 !important;
    background-color: #f2dede !important;
}

.has-success {
    border: 1px solid #71be6a !important;
    background-color: #f1fdf0 !important;
}

/* Zusätzliches Styling für die Modul-Karten */
.feature-card {
	border-radius: 12px;
	border: 1px solid #eee;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.module-price {
	margin-top: auto;
	padding-top: 1.5rem;
	border-top: 1px dashed #dee2e6;
	font-weight: 700;
	color: #0d6efd;
}
.price-label {
	font-size: 0.8rem;
	color: #6c757d;
	font-weight: 400;
	display: block;
}

/* Styling für die Screenshot-Galerie */

#screenshots {
background-color: #f1f7ff; /* Dezent blau abgesetzt */
border-top: 1px solid #e2e8f0;
border-bottom: 1px solid #e2e8f0;
}
	
.screenshot-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
}
.screenshot-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.15);
}
.screenshot-item img {
    transition: transform 0.5s ease;
}
.screenshot-item:hover img {
    transform: scale(1.05);
}
.screenshot-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(13, 110, 253, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}
.screenshot-caption {
    padding: 15px;
    background: #fff;
    border-top: 1px solid #eee;
}

/* --- Kontakt Sektion --- */
#contact {
    background-color: #f1f7ff; /* Dezent blau abgesetzt */
    border-top: 1px solid #eee;
}

.contact-info-card {
    background: #0d6efd;
    color: white;
    border-radius: 15px;
    padding: 40px;
    height: 100%;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.form-control {
    padding: 12px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}