/* ========================================
   KLIZAR RÄUMUNG - PROFESSIONAL WEBSITE
   SEO Optimized CSS - 2026 Standards
   ======================================== */

/* CSS Variables */
:root {
    --anthrazit: #2D3748;
    --anthrazit-dark: #1A202C;
    --turquoise: #00C2CB;
    --turquoise-dark: #00A5AD;
    --turquoise-light: #E6FAFB;
    --white: #FFFFFF;
    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-600: #475569;
    --slate-700: #334155;
    --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--anthrazit);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--anthrazit);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--slate-600);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--turquoise);
    color: var(--white);
    border-color: var(--turquoise);
}

.btn-primary:hover {
    background: var(--turquoise-dark);
    border-color: var(--turquoise-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--anthrazit);
    color: var(--white);
    border-color: var(--anthrazit);
}

.btn-secondary:hover {
    background: var(--anthrazit-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--turquoise);
    border-color: var(--turquoise);
}

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

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Header - Modern & Spacious */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 3rem;
    max-width: 1400px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    padding: 0.25rem 0;
}

.logo img {
    height: 44px;
    width: auto;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-text span:first-child {
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--anthrazit);
    letter-spacing: -0.01em;
}

.logo-text span:last-child {
    font-size: 0.8rem;
    color: var(--turquoise);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Navigation - Clean & Spacious */
.nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.75rem 1.25rem;
    color: var(--slate-600);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--turquoise);
    background: var(--turquoise-light);
}

.nav-link.active {
    color: var(--turquoise);
}

/* Dropdown - Modern Style */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: var(--slate-600);
    font-weight: 500;
    font-size: 0.95rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.dropdown-trigger:hover {
    color: var(--turquoise);
    background: var(--turquoise-light);
}

.dropdown-trigger svg {
    transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-trigger svg {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 260px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.08);
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 100;
    border: 1px solid rgba(0,0,0,0.04);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--slate-600);
    border-radius: var(--radius-md);
    transition: var(--transition);
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: var(--turquoise-light);
    color: var(--turquoise);
    transform: translateX(4px);
}

/* Header CTA - More Prominent */
.header-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--anthrazit);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0;
}

.header-phone svg {
    color: var(--turquoise);
}

.header-phone:hover {
    color: var(--turquoise);
}

.header-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    border-radius: var(--radius-lg);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--anthrazit);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1001;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 100%;
    background: var(--white);
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 1002;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--slate-200);
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--slate-500);
}

.mobile-nav {
    padding: 1rem 1.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    color: var(--slate-600);
    font-weight: 500;
    border-bottom: 1px solid var(--slate-100);
}

.mobile-nav-link:hover {
    color: var(--turquoise);
}

.mobile-nav-divider {
    height: 1px;
    background: var(--slate-200);
    margin: 1rem 0;
}

.mobile-nav-label {
    font-size: 0.875rem;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--anthrazit) 0%, var(--anthrazit-dark) 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--turquoise-dark) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,194,203,0.2);
    color: var(--turquoise);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--turquoise);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--slate-300);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--turquoise);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--slate-400);
    margin-top: 0.25rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-image-badge {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-image-badge-icon {
    width: 48px;
    height: 48px;
    background: var(--turquoise-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--turquoise);
}

.hero-image-badge-text span {
    display: block;
}

.hero-image-badge-text span:first-child {
    font-weight: 700;
    color: var(--anthrazit);
}

.hero-image-badge-text span:last-child {
    font-size: 0.875rem;
    color: var(--slate-500);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--anthrazit) 0%, var(--anthrazit-dark) 100%);
    padding: 8rem 0 4rem;
    margin-top: 70px;
}

.page-hero-content {
    max-width: 800px;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero-text {
    font-size: 1.25rem;
    color: var(--slate-300);
    margin-bottom: 0;
}

/* Section Label */
.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--turquoise);
    margin-bottom: 0.75rem;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
}

/* Background Variants */
.bg-light {
    background: var(--slate-50);
}

.bg-anthrazit {
    background: linear-gradient(135deg, var(--anthrazit) 0%, var(--anthrazit-dark) 100%);
}

.bg-anthrazit h2,
.bg-anthrazit p {
    color: var(--white);
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card-image {
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 1.5rem;
}

.service-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card-price {
    display: inline-block;
    background: var(--turquoise-light);
    color: var(--turquoise);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card-text {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--turquoise);
    font-weight: 600;
}

.service-card-link:hover {
    gap: 0.75rem;
}

/* Trust Section */
.trust-section {
    padding: 3rem 0;
    background: var(--slate-50);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--turquoise-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--turquoise);
}

.trust-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.trust-text {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.benefit-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-text {
    font-size: 0.9375rem;
    margin: 0;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #FFB800;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--turquoise-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--turquoise);
    font-weight: 700;
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-service {
    font-size: 0.875rem;
    color: var(--slate-500);
}

/* SEO Content Section */
.seo-section {
    padding: 4rem 0;
    border-top: 1px solid var(--slate-200);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.seo-content h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: var(--anthrazit);
}

.seo-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.seo-content strong {
    color: var(--anthrazit);
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.seo-block {
    background: var(--slate-50);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--turquoise);
}

.seo-block h3 {
    margin-top: 0;
    color: var(--turquoise);
}

/* Service Content Layout */
.service-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.service-main h2 {
    margin-bottom: 1.5rem;
}

.service-main h3 {
    margin: 2rem 0 1rem;
}

.service-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.service-images img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--slate-100);
}

.service-list li svg {
    flex-shrink: 0;
    color: var(--turquoise);
    margin-top: 0.125rem;
}

/* Sidebar */
.sidebar-card {
    position: sticky;
    top: 100px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.card-content {
    padding: 2rem;
}

.price-display {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--slate-200);
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--turquoise);
    line-height: 1;
}

.sidebar-benefits {
    margin-bottom: 1.5rem;
}

.sidebar-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.sidebar-benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--turquoise-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--turquoise);
    flex-shrink: 0;
}

.sidebar-divider {
    height: 1px;
    background: var(--slate-200);
    margin: 1.5rem 0;
}

/* Price Table */
.price-table {
    background: var(--slate-50);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
}

.price-table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--slate-200);
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--turquoise);
}

/* Savings Box */
.savings-box {
    background: linear-gradient(135deg, var(--turquoise-light), #D4F7F9);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin: 2rem 0;
}

.savings-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.savings-highlight {
    text-align: center;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.savings-highlight .gratis {
    font-size: 2rem;
    font-weight: 700;
    color: var(--turquoise);
    line-height: 1;
    margin: 0.5rem 0;
}

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.checklist li svg {
    color: var(--turquoise);
    flex-shrink: 0;
}

/* Related Services */
.related-services {
    background: var(--slate-50);
    padding: 4rem 0;
}

.related-services h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.related-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.related-card span {
    font-weight: 600;
}

.related-card svg {
    color: var(--turquoise);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Forms */
.form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

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

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--anthrazit);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 0 3px rgba(0,194,203,0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--slate-500);
    margin-top: 1rem;
}

.form-success {
    background: #D1FAE5;
    color: #065F46;
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: 1rem;
    display: none;
}

.form-success.show {
    display: block;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--slate-100);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--turquoise-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--turquoise);
    flex-shrink: 0;
}

.contact-item-label {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin-bottom: 0.25rem;
}

.contact-item-value {
    font-weight: 600;
    color: var(--anthrazit);
}

.contact-item-value a:hover {
    color: var(--turquoise);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    color: var(--anthrazit);
    font-family: inherit;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--turquoise);
}

.faq-question svg {
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--slate-600);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--anthrazit-dark) 0%, #1a202c 100%);
    color: var(--white);
}

.footer-trust-bar {
    background: rgba(0, 194, 203, 0.1);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem 0;
}

.footer-trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-300);
    font-size: 0.9rem;
}

.footer-trust-item svg {
    color: var(--turquoise);
    flex-shrink: 0;
}

.footer-main {
    padding: 4rem 0 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-brand .logo-text span:first-child {
    color: var(--white);
}

.footer-brand .logo-text span:last-child {
    color: var(--turquoise);
}

.footer-description {
    color: var(--slate-400);
    margin-bottom: 1.5rem;
    max-width: 320px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    color: var(--slate-400);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--turquoise);
    color: var(--white);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--turquoise);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--slate-400);
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '›';
    color: var(--turquoise);
    font-weight: bold;
    opacity: 0;
    transition: var(--transition);
    margin-left: -0.5rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
    margin-left: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--slate-400);
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--turquoise);
    margin-top: 0.125rem;
}

.footer-contact-item p {
    font-size: 0.8rem;
    margin: 0 0 0.125rem 0;
    color: var(--slate-500);
}

.footer-contact-item a {
    color: var(--white);
    font-weight: 500;
}

.footer-contact-item a:hover {
    color: var(--turquoise);
}

.footer-cta {
    background: rgba(0, 194, 203, 0.1);
    border: 1px solid rgba(0, 194, 203, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.footer-cta p {
    color: var(--slate-300);
    font-size: 0.9rem;
    margin: 0 0 0.75rem 0;
}

.footer-cta .btn {
    width: 100%;
    justify-content: center;
}

.footer-bottom {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.2);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--slate-500);
    margin: 0;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--slate-500);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--turquoise);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

.whatsapp-float span {
    font-weight: 600;
}

/* Info Banner */
.info-banner {
    background: var(--turquoise);
    padding: 1rem 0;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--slate-200);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--white);
    border: 3px solid var(--turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--turquoise);
}

.process-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.process-text {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin: 0;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 3rem 0;
}

.image-gallery img {
    border-radius: var(--radius-lg);
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.image-gallery img:hover {
    transform: scale(1.02);
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--slate-200);
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.5rem;
}

/* Booking Content */
.booking-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
}

.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--slate-50);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.sidebar-contact-item:hover {
    background: var(--turquoise-light);
}

.sidebar-contact-icon {
    width: 48px;
    height: 48px;
    background: var(--turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.sidebar-contact-icon.whatsapp {
    background: #25D366;
}

.sidebar-contact-label {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.sidebar-contact-value {
    font-weight: 600;
    color: var(--anthrazit);
}

.expect-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.expect-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--slate-600);
}

.expect-list li svg {
    color: var(--turquoise);
    flex-shrink: 0;
}

.hours-list {
    margin-top: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--slate-100);
}

.hours-item:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .sidebar-card {
        position: static;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav, .header-cta .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid::before {
        display: none;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-trust-items {
        gap: 1.5rem;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .seo-grid {
        grid-template-columns: 1fr;
    }
    
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .savings-content {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float span {
        display: none;
    }
    
    .whatsapp-float {
        padding: 1rem;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .service-images {
        grid-template-columns: 1fr;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Print Styles */
@media print {
    .header, .whatsapp-float, .mobile-menu {
        display: none;
    }
    
    .hero {
        padding-top: 2rem;
    }
}


/* NEW SEO Section Styles */
.seo-content-with-icon {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.seo-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(0, 194, 203, 0.1), rgba(0, 194, 203, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-gallery-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.image-gallery-large img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Price Overview Grid */
.price-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.price-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.price-icon {
    margin-bottom: 1rem;
}

.price-card h3 {
    font-size: 1.1rem;
    color: var(--anthrazit);
    margin-bottom: 0.5rem;
}

.price-card .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--turquoise);
    margin-bottom: 0.5rem;
}

.price-card p:last-child {
    color: var(--slate-600);
    font-size: 0.9rem;
}

/* Testimonial Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.testimonial-card .stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--slate-600);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card .author {
    font-style: normal;
    font-weight: 600;
    color: var(--anthrazit);
    font-size: 0.85rem;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--turquoise);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon {
    margin: 1rem 0;
}

.step-card h3 {
    font-size: 1rem;
    color: var(--anthrazit);
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--slate-600);
    line-height: 1.5;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .price-overview-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .seo-content-with-icon {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .image-gallery-large {
        grid-template-columns: 1fr;
    }
    
    .price-overview-grid,
    .testimonial-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
}



/* ========================================
   BEWERTUNGEN PAGE STYLES
======================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.review-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.review-author-name {
    font-weight: 600;
    color: var(--anthrazit);
    margin: 0;
    font-size: 1rem;
}

.review-author-location {
    font-size: 0.8rem;
    color: var(--slate-500);
    margin: 0.25rem 0 0 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.review-meta {
    text-align: right;
    flex-shrink: 0;
}

.review-meta .stars {
    display: flex;
    gap: 2px;
    justify-content: flex-end;
}

.review-meta .stars svg {
    width: 16px;
    height: 16px;
}

.review-date {
    font-size: 0.75rem;
    color: var(--slate-400);
    margin: 0.25rem 0 0 0;
}

.review-title {
    font-size: 1.1rem;
    color: var(--anthrazit);
    margin: 0 0 0.75rem 0;
    font-weight: 600;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate-600);
    margin: 0;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--slate-100);
}

.review-service {
    background: var(--turquoise-light);
    color: var(--turquoise-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.review-verified {
    color: var(--slate-400);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.review-verified::before {
    content: "✓";
    color: #22c55e;
    font-weight: bold;
}

/* FAQ Page Styles */
.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    color: var(--anthrazit);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--slate-100);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--slate-100);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--anthrazit);
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--slate-50);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--slate-600);
    line-height: 1.7;
}

.faq-answer-content p {
    margin: 0 0 1rem 0;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
}

/* Responsive Reviews */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-meta {
        text-align: left;
    }
    
    .review-meta .stars {
        justify-content: flex-start;
    }
}

