        body { font-family: sans-serif; line-height: 1.6; margin: 0; background-color: #f8f8f8; color: #333; }
        .container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 20px 0; }
        header {padding: 10px 0;  border-top: #004080 10px solid; }
        header .top-bar { display: flex; justify-content: space-between; align-items: center; padding: 0 5%;}
        header .logo img { height: 50px; } /* Platzhalter Höhe */
        header nav { background-color: #004080; padding: 10px 0; }
        header nav ul { list-style: none; margin: 0; padding: 0; display: flex; justify-content: center; }
        header nav ul li { margin: 0 15px; position: relative; }
        header nav ul li a { color: white; text-decoration: none; padding: 5px 0; display: block; }
        header nav ul li a:hover { text-decoration: underline; }
        .hero { 
            background: linear-gradient(rgba(0, 51, 102, 0.6), rgba(0, 51, 102, 0.6)), url('path/to/hero-image.jpg') no-repeat center center/cover; 
            color: white; text-align: center; padding: 100px 0; 
        }
        .hero h1 { font-size: 3em; margin-bottom: 20px; color: #004080; }
        .hero p { font-size: 1.2em; margin-bottom: 30px; color: #004080; }
        .cta-button { 
            background-color: #339933; color: white; padding: 15px 30px; text-decoration: none; 
            border-radius: 5px; font-size: 1.1em; display: inline-block; 
        }
        .section { padding: 60px 0; text-align: center; }
        .section h2 { color: #003366; margin-bottom: 40px; font-size: 2em; }
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
        .service-box { background-color: white; padding: 30px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); text-align: left;}
        .service-box h3 { color: #004080; }
        .service-box p { color: #555; }
		.service-box img { width: 70%; height: 300px}
        .about-section { background-color: #e6f2ff; padding: 60px 0; text-align: center; }
        .contact-section { padding: 60px 0; background-color: white; }
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; text-align: left; }
        .contact-info p { margin-bottom: 15px; }
        .contact-info a { color: #004080; text-decoration: none; }
        .contact-form label { display: block; margin-bottom: 5px; color: #555; }
        .contact-form input[type="text"], 
        .contact-form input[type="email"], 
        .contact-form textarea { 
            width: 100%; padding: 10px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 5px; 
            box-sizing: border-box; /* padding inside width */
        }
        .contact-form textarea { min-height: 120px; resize: vertical; }
        .contact-form button { 
            background-color: #339933; color: white; padding: 12px 25px; border: none; border-radius: 5px; 
            cursor: pointer; font-size: 1em; margin-right: 10px; 
        }
        .contact-form button:hover { opacity: 0.9; }
        .whatsapp-button { background-color: #25D366; margin-top: 10px; display: inline-block; padding: 12px 25px; border-radius: 5px; text-decoration: none; color: white; }
        footer { background-color: #003366; color: white; text-align: center; padding: 30px 0; font-size: 0.9em; }
        footer ul { list-style: none; padding: 0; margin: 10px 0; display: flex; justify-content: center; }
        footer ul li { margin: 0 10px; }
        footer ul li a { color: white; text-decoration: none; }
        footer ul li a:hover { text-decoration: underline; }
        .dropdown { position: relative; display: inline-block; }
        .dropdown-content { display: none; position: absolute; background-color: #004080; min-width: 200px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; left: 0;}
        .dropdown-content a { color: white; padding: 12px 16px; text-decoration: none; display: block; text-align: left;}
        .dropdown-content a:hover { background-color: #0050A0; }
        .dropdown:hover .dropdown-content { display: block; }