* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary-color: #1a4d2e;
--secondary-color: #4f9d69;
--accent-color: #d4a574;
--dark-color: #0f1419;
--light-color: #f5f7f6;
--text-color: #2d3436;
--border-color: #e0e0e0;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.5;
color: var(--text-color);
font-size: 14px;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}

.header {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
padding: 12px 0;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
font-size: 18px;
font-weight: bold;
color: white;
text-decoration: none;
}

.nav {
display: flex;
gap: 20px;
}

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

.nav a:hover {
opacity: 0.8;
}

.menu-toggle {
display: none;
flex-direction: column;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.menu-toggle span {
width: 22px;
height: 2px;
background: white;
margin: 3px 0;
transition: 0.3s;
}

.hero {
position: relative;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: white;
padding: 80px 0 60px;
overflow: hidden;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('immobilien_fotos/pattern.svg') repeat;
opacity: 0.05;
pointer-events: none;
}

.hero-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
position: relative;
z-index: 1;
}

.hero-text {
text-align: left;
}

.hero-badge {
display: inline-block;
background: rgba(255,255,255,0.2);
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 20px;
letter-spacing: 0.5px;
}

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

.hero p {
font-size: 17px;
margin-bottom: 30px;
opacity: 0.95;
line-height: 1.6;
}

.hero-features {
display: flex;
gap: 25px;
margin-bottom: 30px;
flex-wrap: wrap;
}

.hero-feature {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
}

.feature-icon {
font-size: 20px;
}

.hero-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.btn-outline {
display: inline-block;
background: transparent;
color: white;
padding: 10px 25px;
border: 2px solid white;
text-decoration: none;
border-radius: 4px;
font-size: 14px;
transition: all 0.3s;
}

.btn-outline:hover {
background: white;
color: var(--primary-color);
}

.hero-image {
position: relative;
}

.hero-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.btn {
display: inline-block;
background: var(--accent-color);
color: white;
padding: 10px 25px;
text-decoration: none;
border-radius: 4px;
font-size: 14px;
transition: background 0.3s;
border: none;
cursor: pointer;
}

.btn:hover {
background: #e76f51;
}

.btn-secondary {
display: inline-block;
background: var(--secondary-color);
color: white;
padding: 8px 20px;
text-decoration: none;
border-radius: 4px;
font-size: 13px;
transition: background 0.3s;
}

.btn-secondary:hover {
background: var(--primary-color);
}

section {
padding: 40px 0;
}

h2 {
font-size: 24px;
margin-bottom: 20px;
color: var(--primary-color);
text-align: center;
}

h3 {
font-size: 18px;
margin-bottom: 10px;
color: var(--primary-color);
}

.section-header {
text-align: center;
margin-bottom: 40px;
}

.section-label {
display: inline-block;
background: var(--light-color);
color: var(--primary-color);
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 12px;
letter-spacing: 0.5px;
}

.section-header p {
font-size: 15px;
color: #666;
margin-top: 10px;
}

.services {
background: var(--light-color);
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-top: 30px;
}

.service-card {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-icon {
font-size: 48px;
margin-bottom: 20px;
}

.service-card h3 {
margin-bottom: 12px;
font-size: 20px;
}

.service-card p {
font-size: 14px;
margin-bottom: 20px;
line-height: 1.6;
color: #555;
}

.about {
padding: 60px 0;
}

.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.about-text {
text-align: left;
}

.about-text h2 {
text-align: left;
margin-bottom: 20px;
}

.about-text p {
font-size: 15px;
margin-bottom: 20px;
line-height: 1.7;
color: #555;
}

.about-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.stats {
display: flex;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
margin-top: 30px;
}

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

.stat-number {
display: block;
font-size: 36px;
font-weight: bold;
color: var(--primary-color);
}

.stat-label {
display: block;
font-size: 13px;
color: var(--text-color);
}

.process {
background: var(--light-color);
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
margin-top: 30px;
}

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

.step-number {
width: 50px;
height: 50px;
background: var(--primary-color);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
font-weight: bold;
margin: 0 auto 15px;
}

.step h3 {
margin-bottom: 10px;
}

.step p {
font-size: 13px;
}

.benefits-list {
max-width: 700px;
margin: 20px auto;
list-style-position: inside;
}

.benefits-list li {
padding: 8px 0;
font-size: 14px;
}

.products {
background: var(--light-color);
}

.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 30px;
}

.product-card {
background: white;
padding: 25px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
text-align: center;
}

.product-card.featured {
border: 2px solid var(--accent-color);
position: relative;
}

.product-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--accent-color);
color: white;
padding: 6px 20px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.5px;
}

.product-header {
margin-bottom: 20px;
}

.price-note {
font-size: 12px;
color: #666;
margin-top: 5px;
display: block;
}

.product-card h3 {
margin-bottom: 15px;
}

.price {
font-size: 28px;
font-weight: bold;
color: var(--primary-color);
margin: 15px 0;
}

.product-card ul {
list-style: none;
margin: 20px 0;
text-align: left;
}

.product-card ul li {
padding: 6px 0;
font-size: 13px;
}

.product-card ul li:before {
content: "✓ ";
color: var(--secondary-color);
font-weight: bold;
}

.testimonials {
background: var(--light-color);
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-top: 30px;
}

.testimonial {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial p {
font-size: 14px;
font-style: italic;
margin-bottom: 10px;
}

.author {
font-size: 12px;
color: var(--primary-color);
font-weight: bold;
}

.why-us {
padding: 60px 0;
}

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

.why-item {
text-align: center;
padding: 25px;
}

.why-icon {
font-size: 42px;
margin-bottom: 15px;
display: block;
}

.why-item h3 {
margin-bottom: 12px;
font-size: 18px;
}

.why-item p {
font-size: 14px;
line-height: 1.6;
color: #555;
}

.real-results {
background: var(--light-color);
padding: 60px 0;
}

.results-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin-top: 30px;
}

.result-card {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.result-quote {
font-size: 14px;
line-height: 1.7;
margin-bottom: 20px;
color: #333;
font-style: italic;
}

.result-author {
display: flex;
flex-direction: column;
gap: 4px;
}

.result-author strong {
color: var(--primary-color);
font-size: 14px;
}

.result-author span {
font-size: 12px;
color: #666;
}

.faq {
padding: 60px 0;
}

.faq-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-top: 30px;
}

.faq-item {
background: var(--light-color);
padding: 25px;
border-radius: 8px;
}

.faq-item h3 {
font-size: 16px;
margin-bottom: 10px;
color: var(--primary-color);
}

.faq-item p {
font-size: 14px;
line-height: 1.6;
color: #555;
}

.final-cta {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: white;
padding: 60px 0;
}

.cta-content {
display: flex;
justify-content: space-between;
align-items: center;
gap: 40px;
flex-wrap: wrap;
}

.cta-text {
flex: 1;
}

.cta-text h2 {
color: white;
text-align: left;
margin-bottom: 15px;
font-size: 28px;
}

.cta-text p {
font-size: 16px;
margin-bottom: 15px;
opacity: 0.95;
}

.cta-benefits {
list-style: none;
margin-top: 20px;
}

.cta-benefits li {
font-size: 14px;
margin-bottom: 8px;
opacity: 0.95;
}

.cta-action {
text-align: center;
}

.btn-large {
display: inline-block;
background: white;
color: var(--primary-color);
padding: 15px 40px;
text-decoration: none;
border-radius: 6px;
font-size: 16px;
font-weight: 600;
transition: transform 0.3s, box-shadow 0.3s;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-large:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-note {
font-size: 12px;
margin-top: 10px;
opacity: 0.8;
}

.footer {
background: var(--dark-color);
color: white;
padding: 30px 0 15px;
font-size: 13px;
}

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

.footer-section h4 {
color: var(--secondary-color);
margin-bottom: 12px;
font-size: 16px;
}

.footer-section p {
margin-bottom: 8px;
line-height: 1.6;
}

.footer-section a {
display: block;
color: white;
text-decoration: none;
margin-bottom: 6px;
transition: color 0.3s;
}

.footer-section a:hover {
color: var(--secondary-color);
}

.footer-bottom {
border-top: 1px solid #444;
padding-top: 15px;
text-align: center;
}

.footer-links {
margin-top: 10px;
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
}

.footer-links a {
color: white;
text-decoration: none;
font-size: 12px;
}

.footer-links a:hover {
color: var(--secondary-color);
}

.page-hero {
background: var(--primary-color);
color: white;
padding: 40px 0;
text-align: center;
}

.page-hero h1 {
font-size: 28px;
margin-bottom: 10px;
}

.page-hero p {
font-size: 15px;
}

.content-section {
padding: 40px 0;
}

.content-section p {
margin-bottom: 15px;
line-height: 1.7;
}

.services-detail {
background: var(--light-color);
}

.detail-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 25px;
}

.detail-item {
background: white;
padding: 25px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
text-align: center;
transition: transform 0.3s;
}

.detail-item:hover {
transform: translateY(-3px);
}

.detail-icon {
font-size: 40px;
margin-bottom: 15px;
display: block;
}

.detail-item h3 {
margin-bottom: 12px;
font-size: 18px;
}

.detail-item p {
font-size: 14px;
line-height: 1.6;
color: #555;
}

.pricing-info {
padding: 40px 0;
}

.pricing-info p {
margin-bottom: 15px;
}

.staging-process {
background: var(--light-color);
}

.process-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 25px;
}

.process-item {
background: white;
padding: 25px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
text-align: center;
}

.process-icon {
font-size: 40px;
margin-bottom: 15px;
display: block;
}

.process-item h3 {
margin-bottom: 12px;
font-size: 18px;
}

.process-item p {
font-size: 14px;
line-height: 1.6;
color: #555;
}

.staging-benefits {
padding: 40px 0;
}

.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 25px;
}

.benefit-card {
background: var(--light-color);
padding: 25px;
border-radius: 12px;
text-align: center;
}

.benefit-icon {
font-size: 40px;
margin-bottom: 15px;
display: block;
}

.benefit-card h3 {
margin-bottom: 12px;
font-size: 18px;
}

.benefit-card p {
font-size: 14px;
line-height: 1.6;
color: #555;
}

.content-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.content-text {
text-align: left;
}

.content-text h2 {
text-align: left;
margin-bottom: 20px;
}

.content-text p {
font-size: 15px;
margin-bottom: 20px;
line-height: 1.7;
color: #555;
}

.content-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.pricing-info {
background: white;
}

.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
margin-top: 30px;
}

.benefit-item {
background: var(--light-color);
padding: 25px;
border-radius: 12px;
text-align: center;
}

.options-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-top: 30px;
}

.option-card {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
text-align: center;
}

.option-card h3 {
margin-bottom: 15px;
font-size: 20px;
}

.option-card p {
font-size: 14px;
line-height: 1.6;
color: #555;
margin-bottom: 20px;
}

.option-price {
display: block;
font-size: 22px;
font-weight: 700;
color: var(--primary-color);
}

.staging-note {
text-align: center;
margin-top: 30px;
font-size: 14px;
color: #666;
font-style: italic;
}

.staging-types {
background: var(--light-color);
}

.staging-types p {
margin-bottom: 15px;
}

.contact-section {
padding: 40px 0;
}

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

.contact-info h2 {
text-align: left;
margin-bottom: 20px;
}

.info-item {
margin-bottom: 20px;
}

.info-item h3 {
font-size: 16px;
margin-bottom: 8px;
}

.info-item p {
font-size: 13px;
line-height: 1.6;
}

.contact-form-wrapper h2 {
text-align: left;
margin-bottom: 15px;
}

.contact-form-wrapper p {
font-size: 13px;
margin-bottom: 20px;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 15px;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
margin-bottom: 5px;
font-size: 13px;
font-weight: 600;
}

.form-group input,
.form-group textarea {
padding: 10px;
border: 1px solid var(--border-color);
border-radius: 4px;
font-size: 13px;
font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-color);
}

.checkbox-group label {
display: flex;
align-items: flex-start;
gap: 8px;
font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
margin-top: 3px;
}

.checkbox-group span {
font-size: 12px;
}

.checkbox-group a {
color: var(--primary-color);
}

.map-section {
background: var(--light-color);
padding: 40px 0;
}

.map-wrapper {
margin-top: 20px;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.thankyou-page,
.error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: white;
text-align: center;
padding: 20px;
}

.thankyou-content,
.error-content {
max-width: 600px;
}

.thankyou-icon {
font-size: 60px;
margin-bottom: 20px;
background: white;
color: var(--primary-color);
width: 100px;
height: 100px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}

.thankyou-content h1,
.error-content h1 {
font-size: 28px;
margin-bottom: 15px;
}

.error-content h1 {
font-size: 60px;
margin-bottom: 10px;
}

.error-content h2 {
color: white;
font-size: 24px;
margin-bottom: 15px;
}

.thankyou-content p,
.error-content p {
font-size: 15px;
margin-bottom: 15px;
line-height: 1.6;
}

.thankyou-actions,
.error-actions {
display: flex;
gap: 15px;
justify-content: center;
margin-top: 25px;
flex-wrap: wrap;
}

.policy-page {
padding: 40px 0;
}

.policy-page h1 {
color: var(--primary-color);
font-size: 28px;
margin-bottom: 10px;
}

.update-date {
font-size: 12px;
color: #666;
margin-bottom: 25px;
}

.policy-page h2 {
text-align: left;
font-size: 20px;
margin-top: 25px;
margin-bottom: 12px;
}

.policy-page h3 {
font-size: 16px;
margin-top: 15px;
margin-bottom: 10px;
}

.policy-page p {
margin-bottom: 12px;
line-height: 1.7;
font-size: 14px;
}

.policy-page ul {
margin: 12px 0 12px 25px;
}

.policy-page ul li {
margin-bottom: 8px;
font-size: 14px;
line-height: 1.6;
word-break: break-all;
}

.form-template {
background: var(--light-color);
padding: 20px;
border-radius: 6px;
margin: 20px 0;
border-left: 4px solid var(--primary-color);
}

.form-template p {
margin-bottom: 10px;
font-size: 13px;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(0,0,0,0.95);
color: white;
padding: 20px;
z-index: 1000;
display: none;
}

.privacy-popup.show {
display: block;
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.privacy-content p {
font-size: 13px;
margin: 0;
flex: 1;
}

.privacy-content a {
color: var(--accent-color);
}

.privacy-content button {
background: var(--accent-color);
color: white;
border: none;
padding: 10px 25px;
border-radius: 4px;
cursor: pointer;
font-size: 13px;
}

.privacy-content button:hover {
background: #e76f51;
}

@media (max-width: 992px) {
.hero-content {
grid-template-columns: 1fr;
}

.hero-image {
order: -1;
}

.about-content,
.content-wrapper {
grid-template-columns: 1fr;
}

.cta-content {
flex-direction: column;
text-align: center;
}

.cta-text h2 {
text-align: center;
}
}

@media (max-width: 768px) {
.nav {
position: fixed;
top: 0;
left: -100%;
width: 250px;
height: 100vh;
background: var(--primary-color);
flex-direction: column;
padding: 60px 20px 20px;
transition: left 0.3s;
z-index: 999;
}

.nav.active {
left: 0;
}

.menu-toggle {
display: flex;
z-index: 1000;
}

.hero {
padding: 50px 0 40px;
}

.hero h1 {
font-size: 28px;
}

.hero p {
font-size: 15px;
}

.hero-features {
flex-direction: column;
align-items: flex-start;
}

.hero-buttons {
flex-direction: column;
}

.hero-buttons a {
width: 100%;
text-align: center;
}

h2 {
font-size: 20px;
}

.stats {
gap: 25px;
}

.stat-number {
font-size: 28px;
}

.services-grid,
.products-grid,
.testimonials-grid,
.detail-grid,
.process-grid,
.benefits-grid {
grid-template-columns: 1fr;
}

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

.footer-content {
grid-template-columns: 1fr;
}

.thankyou-content h1,
.error-content h2 {
font-size: 22px;
}

.error-content h1 {
font-size: 48px;
}

.privacy-content {
flex-direction: column;
text-align: center;
}
}

@media (max-width: 480px) {
.container {
padding: 0 12px;
}
body {
font-size: 13px;
}

.hero {
padding: 40px 0 30px;
}

.hero h1 {
font-size: 24px;
}

.hero p {
font-size: 14px;
}

.hero-badge {
font-size: 11px;
padding: 5px 12px;
}

section {
padding: 30px 0;
}

h2 {
font-size: 18px;
}

h3 {
font-size: 16px;
}

.btn {
padding: 8px 20px;
font-size: 13px;
}

.service-card,
.product-card,
.detail-item,
.process-item {
padding: 15px;
}

.footer {
padding: 20px 0 10px;
}
}
