        :root {
  /* Blau */
--stormblau: #4869FF;   
--text: #111827; 
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body, textarea {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #374151;
            background: white;
        }

        .container {
            max-width: 1152px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .container-sm {
            max-width: 672px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header */
        header {
            border-bottom: 1px solid #e5e7eb;
            padding: 1rem 3rem;
        }

        .header-content {
            max-width: 1152px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-icon {
            width: 2rem;
            height: 2rem;
            color: var(--stormblau);
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text);
        }

        .header-link {
            color: #2563eb;
            text-decoration: none;
            transition: color 0.2s;
        }

        .header-link:hover {
            color: #1d4ed8;
        }

        /* Hero Section */
        .hero {
            padding: 3rem 1.5rem;
            background: linear-gradient(to bottom, #eff6ff, white);
        }

        .hero-content {
            text-align: center;
            margin-bottom: 2rem;
        }

        h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--stormblau);
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text);
            margin-bottom: 0.5rem;
        }

        .location {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: var(--text);
        }
        
        .location a {color: var(--text);}

        /* Images Grid */
        .images-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .images-grid img {
            width: 100%;
            height: 192px;
            object-fit: cover;
            border-radius: 0.5rem;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }

        .images-grid2 {

            gap: 1rem;
            margin-bottom: 2rem;
        }

        .images-grid2 img {
            width: 100%;
            
            object-fit: scale-down;
            border-radius: 0.5rem;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            background: white;
            border-radius: 0.5rem;
            padding: 1.5rem;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            border: 1px solid #e5e7eb;
        }

        .stat-item {
            text-align: center;
        }

        .stat-icon {
            width: 2rem;
            height: 2rem;
            color: #2563eb;
            margin: 0 auto 0.5rem;
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text);
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--stormblau);
        }

        /* Text Sections */
        .text-section {
            padding: 3rem 0rem;
        }

        .text-section.gray-bg {
            background: #f9fafb;
        }

        .text-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            column-gap: 2rem;
            padding: 0px 1.5rem;
        }

        .text-column h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #2563eb;
        }

        .text-column p {
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        /* Features Section */
        .features {
            padding: 3rem 1.5rem;
        }

        h2 {
            font-size: 1.875rem;
            margin-bottom: 2rem;
            text-align: center;
            color: var(--text);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .feature-card {
            text-align: center;
            padding: 1.5rem;
            border-radius: 0.5rem;
            border: 1px solid #e5e7eb;
            transition: border-color 0.2s;
        }

        .feature-card:hover {
            border-color: #4869FF;
        }

        .feature-icon {
            width: 2.5rem;
            height: 2.5rem;
            color: #2563eb;
            margin: 0 auto 0.75rem;
        }

        .feature-title {
            font-size: 1.125rem;
            margin-bottom: 0.5rem;
            color: var(--text);
        }

        .feature-description {
            font-size: 0.875rem;
            color: #4b5563;
        }

        /* Property Details */
        .property-details {
            padding: 3rem 1.5rem;
            background: #f9fafb;
        }

        .details-card {
            background: white;
            border-radius: 0.5rem;
            padding: 2rem;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            border: 1px solid #e5e7eb;
        }

        .details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .details-section h3 {
            font-size: 1.125rem;
            margin-bottom: 1rem;
            color: #2563eb;
        }

        .details-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .details-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            color: #374151;
        }

        .bullet {
            color: #4869FF;
            margin-top: 0;
        }

        .price-section {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #e5e7eb;
            text-align: center;
        }

        .price-label {
            color: #4b5563;
            margin-bottom: 0.5rem;
        }

        .price {
            font-size: 2.25rem;
            color: #2563eb;
            margin-bottom: 0.5rem;
        }

        .price-unit {
            font-size: 1.25rem;
            color: #4b5563;
        }

        .price-note {
            font-size: 0.875rem;
            color: #6b7280;
        }

        /* Contact Section */
        .contact {
            padding: 3rem 1.5rem;
        }

        .contact-intro {
            text-align: center;
            margin-bottom: 2rem;
        }

        .contact-intro p {
            color: #4869FF;
        }

        .contact-form {
            background: white;
            border-radius: 0.5rem;
            padding: 2rem;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            border: 1px solid #e5e7eb;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        label {
            display: block;
            margin-bottom: 0.25rem;
            font-weight: 500;
            color: #374151;
        }

        input, textarea {
            width: 100%;
            padding: 0.5rem 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        textarea {
            resize: vertical;
        }

        button {
            width: 100%;
            padding: 0.625rem 1rem;
            background: #4869FF;
            color: white;
            border: none;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        button:hover {
            background: #1d4ed8;
        }


        /* Contact Info */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .contact-info a {text-decoration: none;color:#111827}

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            background: #f9fafb;
            border-radius: 0.5rem;
        }

        .contact-icon {
            width: 1.25rem;
            height: 1.25rem;
            color: #2563eb;
            flex-shrink: 0;
        }

        .contact-info-label {
            font-size: 0.875rem;
            color: #4b5563;
        }

        .contact-info-value {
            color: #111827;
            text-decoration: none;
        }

        /* Footer */
        footer {
            border-top: 1px solid #e5e7eb;
            padding: 2rem 1.5rem;
            margin-top: 3rem;
            text-align: center;
            color: #4b5563;
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.25rem;
            }

            .hero-subtitle {
                font-size: 1.125rem;
            }

            .images-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
                /* Form */
    
    .formCheck {
	margin-bottom: 65px;
	min-height: 48px;
	padding: 9px 0 0 70px;
	position: relative
}

@media (max-width:960px) {
	.formCheck {
		padding-top: 0
	}
}

input#formCheck {
    width:13px;
    margin-left: 0;
    padding-left: 0;

}

.formCheck {
color: var(--text);
    
	cursor: pointer;
	display: block;
	height: 40px;
	left: 0;
    text-align: left!important;
	top: 0;
	width: 40px;
    border-radius: 0.375rem;
}


.formCheck p {
	margin: 0
}

.formCheck a {
	color: var(--text);
	text-decoration: none
}

.formCheck a:hover {
	text-decoration: underline
}

p#datenschutz {
    font-size: 10px;
}

#formInfo {margin-top:20px;}