        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
	    font-size: 1.3em:
            margin: 0 auto;
            padding: 20px;
        }
	.nav-main {
	    font-size: 2em:
	}
        h1 {
            color: #3e7e32;
            text-align: center;
            margin-bottom: 30px;
        }
        h3 {
            color: #3e7e32;
            text-align: center;
            margin-bottom: 14px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea,
        select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
        textarea {
            height: 150px;
        }
        .file-upload {
            border: 1px dashed #ccc;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            border-radius: 4px;
        }
        .captcha-container {
            background: #f9f9f9;
            padding: 15px;
            border-radius: 4px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .captcha-text {
            font-size: 1.2rem;
            font-weight: bold;
            letter-spacing: 3px;
            background: #3e7e32;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
        }
        button {
            background: #3e7e32;
            color: white;
            border: none;
            padding: 12px 20px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            display: block;
            margin: 0 auto;
        }
        button:hover {
            background: #c0392b;
        }
        .error {
            color: #3e7e32;
            font-size: 0.9rem;
            margin-top: 5px;
        }
        .success {
            color: #27ae60;
            text-align: center;
            font-weight: bold;
            margin: 20px 0;
        }
        .blog-card {
            margin-bottom: 2rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            border: none;
            border-radius: 8px;
            overflow: hidden;
        }
        .blog-image {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .blog-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #333;
        }
        .blog-date small {
            color: #666;
        }
        .card-text {
            color: #555;
            line-height: 1.5;
        }
        .card-footer {
            background-color: #f8f9fa;
            padding: 1rem;
        }
        .location-list {
            margin-bottom: 0;
            color: #3e7e32;
            font-weight: 500;
        }
       /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: Arial, sans-serif;
            color: #333;
        }

        /* Header Styles */
        .header {
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 1rem 0;
            position: relative;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            display: flex;
            align-items: center;
        }
        .logo img {
            height: 60px;
            width: auto;
        }
        .logo-text {
            margin-left: 15px;
            font-size: 1.8rem;
            font-weight: bold;
            color: #3e7e32;
        }
        .logo-subtitle {
            font-size: 0.9rem;
            color: #666;
            margin-left: 17px;
            font-weight: normal;
        }

        /* Navigation */
        .nav-main {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-main a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.3s;
        }
        .nav-main a:hover {
            color: #3e7e32;
        }
        .nav-main a.active {
            color: #3e7e32;
            border-bottom: 2px solid #3e7e32
;
            padding-bottom: 2px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://www.rhg.de/media/11/55/bd/1704896758/RHG_Profi-Baustoffe_676A9373_72dpi.jpg') no-repeat center center/cover;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-bottom: 3rem;
        }
        .hero-content h1 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        .hero-content p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
        }

	.cms-image-link {
	    padding: 40px 0 0 0;
	}

        /* Responsive */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }
            .nav-main {
                gap: 1rem;
            }
            .hero-content h1 {
                font-size: 2rem;
            }
            .hero {
                height: 300px;
            }
        }
