/* ====== PROBS-SEITE – Entwicklerpräsentation ====== */
.probs-section {
    background-color: #f7f7f7;
    padding: 40px 20px;
    min-height: 100vh;
}

.probs-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.probs-container h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.probs-container p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.2em;
}

.highlight-link {
    color: #3eb489;
    font-weight: bold;
    text-decoration: none;
}
.highlight-link:hover {
    text-decoration: underline;
}

/* ====== Dashboard-Leistungen ====== */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.dashboard-box {
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.dashboard-box:hover {
    transform: scale(1.01);
}

.dashboard-box h4 {
    font-size: 1.2rem;
    color: #2a2a2a;
    margin-bottom: 10px;
}

.dashboard-box p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

/* CTA-Link */
.cta-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #3eb489;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.cta-link:hover {
    background-color: #339d79;
}
