* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.5;
}

:root {
    --primary: #1a4a6b;
    --primary-dark: #0e3a5a;
    --primary-light: #e8f0f5;
    --secondary: #2c9c8c;
    --secondary-dark: #1f7a6e;
    --accent: #f0a04b;
    --gray-50: #f8f9fa;
    --gray-100: #f0f2f0;
    --gray-200: #e4e7e4;
    --gray-600: #6c757d;
    --gray-800: #2c3e2f;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 32px rgba(0,0,0,0.1);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.logo p {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    transition: color 0.2s;
    cursor: pointer;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    padding: 60px 0 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--gray-800);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin: 60px 0;
}

.step-card {
    flex: 1;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 16px;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.step-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Service Cards */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--gray-800);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.service-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Form Styles */
.form-section {
    background: white;
    border-radius: 32px;
    padding: 48px;
    margin: 40px 0;
    box-shadow: var(--shadow-md);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-800);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,74,107,0.1);
}

.address-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.address-row .form-group {
    flex: 1;
}

.möbelliste-panel {
    background: white;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--gray-200);
    max-height: 450px;
    overflow-y: auto;
}

.möbel-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.möbel-item button {
    background: var(--primary);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    margin: 0 5px;
    transition: all 0.2s;
}

.möbel-item button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.möbel-item .qty {
    font-weight: bold;
    min-width: 35px;
    text-align: center;
    display: inline-block;
}

.search-furniture {
    width: 100%;
    padding: 12px 16px;
    border-radius: 40px;
    border: 1px solid var(--gray-200);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.volume-badge {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
}

.kueche-option {
    background: var(--primary-light);
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
}

.checkbox-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input {
    width: auto;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--gray-800);
    color: #d9e3cf;
    padding: 48px 0 32px;
    margin-top: 60px;
    border-radius: 32px 32px 0 0;
}

.footer a {
    color: #c1d5b9;
    text-decoration: none;
    cursor: pointer;
}

.footer a:hover {
    color: white;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-column p,
.footer-column a {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.advantage-box {
    background: var(--primary-light);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.advantage-box h3 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.advantage-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.advantage-item {
    font-size: 1rem;
}

/* Page content */
.page-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.page-content h1 {
    color: var(--primary);
    margin-bottom: 30px;
}

.page-content h3 {
    margin: 25px 0 10px;
    color: var(--primary-dark);
}

.page-content p {
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Thank You Page */
.thankyou-card {
    background: white;
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    margin: 60px auto;
    box-shadow: var(--shadow-lg);
}

.thankyou-icon {
    font-size: 5rem;
    margin-bottom: 24px;
}

.thankyou-card h1 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 16px;
}

.thankyou-card p {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-box {
    background: var(--primary-light);
    border-radius: 20px;
    padding: 24px;
    margin: 30px 0;
    text-align: left;
}

.info-box p {
    margin-bottom: 12px;
    font-size: 1rem;
}

/* Contact Page */
.contact-box {
    text-align: center;
    max-width: 500px;
    margin: 60px auto;
    background: var(--gray-50);
    border-radius: 24px;
    padding: 40px;
}

.contact-box p {
    font-size: 1.2rem;
    margin: 16px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .navbar {
        flex-direction: column;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .footer-columns {
        flex-direction: column;
        text-align: center;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}