            :root {
            --primary: #2c3e50;
            --secondary: #0057FF;
            --accent: #e74c3c;
            --light: #ecf0f1;
            --dark: #1a2530;
            --gray: #95a5a6;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('/de/bilder/kuehlplatten-warmhalteplatten-silber_4.jpg') center center / contain no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .tagline {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .hero-btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
        
        .hero-btn:hover {
            background-color: #a5281c;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        section {
            padding: 60px 0;
        }
        
        h2 {
            text-align: center;
            color: var(--primary);
            margin-bottom: 40px;
            font-size: 2.2rem;
            position: relative;
        }
        
        h2::after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            margin: 15px auto;
        }
        
        .intro-text {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px;
            font-size: 1.1rem;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .product-img {
    height: 200px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
        
        .product-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-title {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .product-subtitle {
            color: var(--secondary);
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .product-description {
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .product-model {
            background: var(--primary);
            color: white;
            padding: 8px 15px;
            border-radius: 4px;
            display: inline-block;
            font-weight: bold;
            margin-top: auto;
        }
        

        
        .applications {
            background-color: var(--light);
            padding: 60px 0;
        }
        
        .applications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .application-card {
            background: white;
            border-radius: 8px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .application-card:hover {
            transform: translateY(-5px);
        }
        
        .application-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .application-title {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 10px;
        }
		
		
  ul {
    list-style-type: none; /* entfernt die Aufzählungspunkte */
    padding-left: 0;        /* entfernt den linken Einzug */
  }

     
    table {
        margin: 0 auto;
    }

  
        .custom-section {
            background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)),  center/cover;
            color: white;
            text-align: center;
            padding: 80px 20px;
            margin: 60px 0;
        }
        
        .custom-section h2 {
            color: white;
        }
        
        .custom-section h2::after {
            background: var(--accent);
        }
        
        .contact-section {
            text-align: center;
            padding: 60px 0;
        }
        
        .contact-info {
            font-size: 1.4rem;
            margin: 30px 0;
        }
        
        .contact-btn {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
        
        .contact-btn:hover {
            background-color: var(--dark);
            transform: translateY(-3px);
        }
        
        footer {
            background-color: var(--dark);
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        

        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 20px 0;
        }
        
        .footer-links a {
            color: var(--accent);
            text-decoration: none;
        }
        
        .footer-links a:hover {
            text-decoration: underline;
        }
        
        .copyright {
            margin-top: 20px;
            color: var(--gray);
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
        }
		
		
		
/* Language Switcher */
.language-switcher {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
  font-size: 16px; /* etwas größer */
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.language-switcher:hover {
  transform: scale(1.05);
}

.language-switcher .current-language {
  padding: 10px 15px;
  background-color: #0066cc; /* kräftigere Farbe */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Dropdown */
.language-dropdown {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  background-color: #1a1a1a;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 5px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  min-width: 140px;
  z-index: 1001;
}

.language-dropdown a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  font-size: 15px;
  transition: background 0.2s ease;
}

.language-dropdown a:hover {
  background-color: #333;
}

/* Hover-Effekt */
.language-switcher:hover .language-dropdown {
  display: block;
}

/* RTL Support for Arabic */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}


[dir="rtl"] .header-container,
[dir="rtl"] .footer-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .language-switcher {
    margin-left: 0;
    margin-right: auto;
}

[dir="rtl"] .logo-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .language-dropdown {
    left: 0;
    right: auto;
}




footer {
    background-color: var(--primary);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.footer-section h3 {
    color: var(--light);
    margin-bottom: 1rem;
}

.footer-section a.white-link {
  color: white !important;
  text-decoration: none;
}

.footer-social {
  padding: 1rem;
  text-align: center;
}

.footer-social a {
  color: #f7f8fa;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social a:hover {
  text-decoration: underline;
}

.social-icon {
  width: 24px;
  height: 24px;
}



.footer-social {
  padding: 1rem;
  text-align: center;
}

.footer-social a {
  color: #f7f8fa;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 10px; /* Abstand zwischen den Icons reduzieren */
}

.social-icon {
  width: 22px;  /* Größe auf Desktop reduzieren */
  height: 22px; /* Größe auf Desktop reduzieren */
  transition: transform 0.3s ease;
}

/* Social Media Icons auf allen Geräten kleiner machen */
@media (min-width: 769px) {
  .social-icon {
    width: 20px;  /* Noch kleiner auf großen Bildschirmen */
    height: 20px; /* Noch kleiner auf großen Bildschirmen */
  }
}

@media (max-width: 768px) {
  .social-icon {
    width: 18px;  /* Größe auf Tablets */
    height: 18px; /* Größe auf Tablets */
  }
}

@media (max-width: 480px) {
  .social-icon {
    width: 16px;  /* Größe auf Handys */
    height: 16px; /* Größe auf Handys */
  }
}

/* Optional: Hover-Effekt für bessere Interaktion */
.social-icon:hover {
  transform: scale(1.1); /* Leichte Vergrößerung beim Hover */
}


.info-icon {
  font-size: 1.6rem; /* oder z. B. 24px */
  vertical-align: middle;
  margin-right: 4px;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/*.copyright {
    display: block;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray);
    margin: 1rem auto 0;
    font-size: 0.9rem;
    max-width: 100%;
    box-sizing: border-box;
	width: 100%; /* Füge diese Zeile hinzu 
}   */

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 30, 60, 0.9);
    color: white;
    padding: 15px 0;
    z-index: 1000;
    display: none;
    font-family: 'Segoe UI', sans-serif;
}

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

.cookie-text {
    flex: 1;
    min-width: 300px;
    line-height: 1.5;
}

.cookie-link {
    color: #4da6ff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #4CAF50;
    color: white;
}

.cookie-btn.reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@keyframes highlight {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); box-shadow: 0 10px 20px rgba(0,100,200,0.2); }
  100% { transform: scale(1); }
}
.service-card:hover {
  animation: highlight 0.5s ease;
}


