        :root {
            --primary: #16a34a;
            --primary-dark: #15803d;
            --primary-light: #22c55e;
            --secondary: #059669;
            --secondary-dark: #047857;
            --accent: #84cc16;
            --accent-dark: #65a30d;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            --dark: #0f172a;
            --dark-light: #1e293b;
            --gray-50: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-800: #1e293b;
            --gray-900: #0f172a;
            --white: #ffffff;
        }

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

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--gray-900);
            background: var(--white);
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(22, 163, 74, 0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled::before {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-content {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem 0;
        }

	.brand {
	    display: flex;
	    align-items: center;
	    text-decoration: none;
	}

	.brand-logo {
	    height: 52px;
	    width: auto;
	    object-fit: contain;
	    transition: transform 0.2s ease;
	}

	.brand-logo:hover {
	    transform: scale(1.65);
	}

	/* Für mobile Geräte etwas kleiner */
	@media (max-width: 768px) {
	    .brand-logo {
	        height: 40px;
	    }
	}

        @keyframes shimmer {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(180deg); }
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--gray-900);
            line-height: 1;
        }

        .brand-tagline {
            font-size: 0.75rem;
            color: var(--gray-500);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            list-style: none;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            text-decoration: none;
            color: var(--gray-600);
            font-weight: 500;
            font-size: 0.95rem;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .nav-link:hover {
            color: white;
            transform: translateY(-1px);
        }

        .nav-link:hover::before {
            left: 0;
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
            color: white !important;
            font-weight: 600;
            padding: 0.875rem 1.5rem;
            margin-left: 1rem;
            box-shadow: 0 4px 15px rgba(132, 204, 22, 0.3);
        }

        .nav-cta::before {
            background: linear-gradient(135deg, var(--accent-dark) 0%, var(--primary) 100%);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(132, 204, 22, 0.4);
        }

        /* Mobile Menu Toggle */
	.mobile-toggle {
	    display: none;
	    flex-direction: column;
	    width: 40px;
	    height: 40px;
	    justify-content: center;
	    cursor: pointer;
	    background: var(--gray-100);
	    border-radius: 10px;
	    position: relative;
	    z-index: 1003;
	}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-toggle span:nth-child(1) {
    top: 16px;
}

.mobile-toggle span:nth-child(2) {
    top: 19px;
}

.mobile-toggle span:nth-child(3) {
    top: 22px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
    top: 19px;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    top: 19px;
}


        /* Mobile Menu */
	.mobile-menu {
	    position: fixed;
	    top: 0;
	    right: -100%;
	    width: 100%;
	    max-width: 400px;
	    height: 100vh;
	    background: var(--white);
	    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
	    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	    z-index: 1002;
	    padding: 8rem 2rem 2rem;
	    display: flex;
	    flex-direction: column;
	    gap: 1rem;
	}

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu .nav-link {
            width: 100%;
            padding: 1rem 1.5rem;
            font-size: 1.1rem;
            justify-content: flex-start;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            position: relative;
            overflow: hidden;
            padding-top: 6rem;
        }

	.hero::before {
	    content: '';
	    position: absolute;
	    top: 0;
	    left: -10rem;
	    width: 70%;
	    height: 100%;
	    background: url('/assets/img/bigpoppa.jpg') left center/cover;
	    opacity: 0.15;
	    z-index: 1;
	    mask: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
	    -webkit-mask: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
	}

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            max-width: 600px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--white);
            border: 1px solid var(--gray-200);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--gray-600);
            margin-bottom: 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .badge-icon {
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, var(--success) 0%, var(--secondary) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
            color: white;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            color: var(--gray-900);
            margin-bottom: 1.5rem;
        }

        .hero-highlight {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--gray-600);
            line-height: 1.6;
            margin-bottom: 3rem;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(22, 163, 74, 0.4);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--gray-700);
            border-color: var(--gray-200);
        }

        .btn-secondary:hover {
            background: var(--gray-50);
            transform: translateY(-1px);
        }

        .hero-visual {
            position: relative;
        }

        .hero-card {
            background: var(--white);
            border-radius: 24px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--gray-100);
        }

        .hero-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .problem-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .problem-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--gray-50);
            border-radius: 12px;
            border-left: 4px solid var(--primary);
        }

        .problem-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: white;
            flex-shrink: 0;
        }

        .problem-text {
            flex: 1;
        }

        .problem-text strong {
            display: block;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 0.25rem;
        }

        .problem-text span {
            color: var(--gray-600);
            font-size: 0.9rem;
        }

        /* Trust Section */
        .trust-section {
            padding: 5rem 0;
            background: var(--white);
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .trust-card {
            text-align: center;
            padding: 2rem 1rem;
            background: var(--gray-50);
            border-radius: 16px;
            border: 1px solid var(--gray-100);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .trust-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        }

        .trust-number {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 0.5rem;
        }

        .trust-label {
            color: var(--gray-600);
            font-weight: 500;
        }

        /* Problem Section */
        .problem-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
            color: white;
            position: relative;
        }

        .problem-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/assets/img/bigpoppa2.jpg') center/cover;
            opacity: 0.05;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
            position: relative;
            z-index: 2;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.25rem;
            color: #849cb9;
            line-height: 1.6;
        }

        .problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
            z-index: 2;
        }

        .problem-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .problem-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .problem-card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin: 0 auto 1.5rem;
        }

        .problem-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .problem-card p {
            color: var(--gray-300);
            line-height: 1.6;
        }

        /* Solution Section */
        .solution-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
        }

        .solution-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .solution-section h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            margin-bottom: 2rem;
        }

        .solution-section p {
            font-size: 1.5rem;
            line-height: 1.6;
            margin-bottom: 3rem;
            opacity: 0.95;
        }

        /* About Section */
        .about-section {
            padding: 6rem 0;
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	    min-height: 500px;
        }

	.about-image img {
	    width: 100%;
	    height: 100%;
	    min-height: 500px;
	    object-fit: cover;
	    display: block;
	}

        .about-content h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 2rem;
        }

        .about-content p {
            font-size: 1.1rem;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .highlight {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        .credentials {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }

        .credential {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
        }

        /* Services Section */
        .services-section {
            padding: 6rem 0;
            background: var(--gray-50);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            border: 1px solid var(--gray-200);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            transform: scaleX(0);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: white;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--gray-600);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .service-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem 0;
            color: var(--gray-600);
        }

        .service-features li::before {
            content: '';
            width: 16px;
            height: 16px;
            background: var(--success);
            border-radius: 50%;
            flex-shrink: 0;
            position: relative;
        }

        .service-features li::after {
            content: '✓';
            position: absolute;
            margin-left: -16px;
            color: white;
            font-size: 0.7rem;
            font-weight: bold;
        }

        .service-price {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
            border-top: 1px solid var(--gray-200);
            padding-top: 1.5rem;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 6rem 0;
            background: var(--white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial {
            background: var(--gray-50);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            border: 1px solid var(--gray-200);
            position: relative;
        }

        .testimonial::before {
            content: '"';
            font-size: 4rem;
            color: var(--gray-300);
            position: absolute;
            top: -0.5rem;
            left: 1rem;
            font-family: serif;
        }

        .testimonial-content {
            position: relative;
            z-index: 2;
        }

        .testimonial-text {
            font-size: 1.1rem;
            color: var(--gray-700);
            line-height: 1.6;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 0.25rem;
        }

        .testimonial-meta {
            color: var(--gray-500);
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact-section {
            padding: 6rem 0;
            background: var(--gray-50);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .contact-form {
            background: var(--white);
            border-radius: 20px;
            padding: 3rem 2.5rem;
            border: 1px solid var(--gray-200);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

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

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

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

        .form-input {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: var(--white);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
        }

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

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid var(--gray-200);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: white;
            flex-shrink: 0;
        }

        .contact-details h4 {
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 0.25rem;
        }

        .contact-details p {
            color: var(--gray-600);
            margin: 0;
        }

        /* Footer */
        .footer {
            background: var(--gray-900);
            color: white;
            padding: 4rem 0 2rem;
        }

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

        .footer-section h3 {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .footer-section p {
            color: var(--gray-400);
            line-height: 1.6;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.75rem;
        }

        .footer-section a {
            color: var(--gray-400);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid var(--gray-800);
            padding-top: 2rem;
            text-align: center;
            color: var(--gray-400);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-grid,
            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-visual {
                order: 1;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-toggle {
                display: flex;
            }

            .hero {
                padding-top: 7rem;
            }

            .services-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

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

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

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

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

            .contact-form,
            .hero-card {
                padding: 2rem 1.5rem;
            }
        }

        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Utility Classes */
        .text-center { text-align: center; }
        .hidden { display: none !important; }
        .honeypot { position: absolute !important; left: -9999px !important; }

        .location-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }
        
        .location-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .location-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .location-card:hover {
            transform: translateY(-5px);
        }
        
        .location-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .location-card i {
            margin-right: 0.5rem;
        }
        
        .faq-section {
            padding: 4rem 0;
            background: white;
        }
        
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .faq-item {
            background: var(--gray-50);
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid var(--primary);
        }
        
        .faq-item h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .faq-item p {
            line-height: 1.6;
            margin: 0;
        }
        
        @media (max-width: 768px) {
            .location-cards {
                grid-template-columns: 1fr;
            }
            
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

.service-price-special {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: 1rem;
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.3);
    border: 3px solid #fff;
}

.service-price-special::before {
    content: "🔥";
    position: absolute;
    top: -12px;
    right: -12px;
    background: #ff6b00;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.price-badge-container {
    text-align: center;
}

.price-badge {
    background: rgba(255,255,255,0.25);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    border: 2px solid rgba(255,255,255,0.3);
}

.price-info {
    font-size: 0.7rem;
    opacity: 0.9;
    font-style: italic;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-old-container, .price-new-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-old-label, .price-new-label {
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.price-old {
    text-decoration: line-through;
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    font-weight: 600;
}

.price-new {
    color: white;
    font-weight: 900;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.price-arrow {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    opacity: 0.8;
}

.savings-highlight {
    background: #00cc44;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.price-duration {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    font-style: italic;
}

.service-price {
    text-align: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .price-comparison {
        gap: 0.5rem;
    }
    
    .price-new {
        font-size: 1.5rem;
    }
    
    .price-arrow {
        font-size: 1.2rem;
    }
}
