/* ===================================
   MENSCHLICH-DIGITAL.DE - Stylesheet
   Farbe: #004a99 (Blau)
   Schrift: DejaVu Sans / Arial
   =================================== */

/* === RESET & BASICS === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DejaVu Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER === */
header {
    background-color: #004a99;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.logo p {
    font-size: 14px;
    margin: 5px 0 0 0;
    opacity: 0.9;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, #004a99 0%, #0066cc 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 24px;
    margin-bottom: 15px;
    opacity: 0.95;
}

.hero .description {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: white;
    color: #004a99;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: #004a99;
    color: white;
    border: 2px solid #004a99;
}

.btn-secondary:hover {
    background-color: white;
    color: #004a99;
}

/* === SECTIONS === */
section {
    padding: 60px 20px;
}

section h2 {
    font-size: 36px;
    color: #004a99;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
}

section h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

/* === PROBLEM SECTION === */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.problem-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-left: 4px solid #004a99;
    font-size: 18px;
}

.problem-item::before {
    content: "☐ ";
    font-size: 20px;
    color: #004a99;
    margin-right: 10px;
}

/* === SOLUTION SECTION === */
.solution-box {
    background-color: #f5f9ff;
    border: 3px solid #004a99;
    border-radius: 10px;
    padding: 40px;
    max-width: 800px;
    margin: 40px auto;
}

.solution-box h3 {
    color: #004a99;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.solution-box .tagline {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    margin: 30px 0;
}

.features-list li {
    padding: 12px 0;
    font-size: 18px;
    border-bottom: 1px solid #ddd;
}

.features-list li::before {
    content: "✓ ";
    color: #004a99;
    font-weight: bold;
    font-size: 20px;
    margin-right: 10px;
}

.price-box {
    background-color: white;
    border: 2px solid #004a99;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    margin: 30px 0;
}

.price-box .support {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.price-box .price {
    font-size: 36px;
    font-weight: bold;
    color: #004a99;
}

/* === TARGET AUDIENCE === */
.target-box {
    background-color: #fff9e6;
    border-left: 5px solid #ffc107;
    padding: 30px;
    margin: 40px auto;
    max-width: 700px;
}

.target-box h3 {
    color: #333;
    margin-bottom: 20px;
}

.target-box p {
    font-size: 18px;
    line-height: 1.8;
}

/* === PROCESS SECTION === */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 20px;
}

.process-step .number {
    background-color: #004a99;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #004a99;
}

.process-step p {
    font-size: 14px;
    color: #666;
}

/* === ABOUT SECTION === */
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.about-image {
    flex: 0 0 250px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    border: 4px solid #004a99;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* === CTA SECTION === */
.cta {
    background-color: #004a99;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* === FOOTER === */
footer {
    background-color: #f5f5f5;
    padding: 40px 20px 20px;
    border-top: 3px solid #004a99;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #004a99;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #004a99;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 14px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero .subtitle {
        font-size: 20px;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image {
        flex: 0 0 auto;
    }
    
    section h2 {
        font-size: 28px;
    }
    
    .solution-box {
        padding: 25px;
    }
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}