/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 01 2025 | 13:20:46 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #fff;
  color: white;
  min-height: 100vh;
}

.app {
  min-height: 100vh;
}

/* Header Styles */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  padding-bottom: 16px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-container {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  overflow: hidden;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-info {
  display: flex;
  flex-direction: column;
}

.header-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.header-title h1 {
  font-size: 18px;
  font-weight: 600;
}

.filiale-badge {
  background: #ea580c;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.filiale-badge.hidden {
  display: none;
}

.header-subtitle {
  font-size: 14px;
  color: #9ca3af;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.time-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border: 1px solid #4b5563;
  border-radius: 6px;
  font-size: 12px;
  color: #d1d5db;
}

.settings-icon {
  width: 24px;
  height: 24px;
  color: #9ca3af;
  cursor: pointer;
}

/* Main Card Styles */
.main-card-container {
  padding: 0 24px;
  margin-bottom: 24px;
}

.main-card {
  background: #f3f4f6;
  color: black;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.main-card-content {
  padding: 24px;
}

.main-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.main-card-text h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

.main-card-text p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.0;
}

.arrow-icon {
  width: 24px;
  height: 24px;
  color: #6b7280;
  flex-shrink: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 4px;
}

.stat-value {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-value.orange {
  color: #ea580c;
}

.stat-value.green {
  color: #16a34a;
}

/* Services Grid */
.services-grid {
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.service-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.02);
}

.service-card.featured {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
}

.service-card:not(.featured) {
  background: #f3f4f6;
  color: black;
}

.service-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.service-content {
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.service-title h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.service-description {
  font-size: 14px;
  margin-bottom: 8px;
}

.service-card.featured .service-description {
  color: rgba(255, 255, 255, 0.8);
}

.service-card:not(.featured) .service-description {
  color: #6b7280;
}

.quick-access-badge {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 4px 12px;
  display: inline-block;
}

.quick-access-badge span {
  font-size: 14px;
  font-weight: 600;
}

.service-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.service-card.featured .service-icon {
  color: white;
}

.service-card:not(.featured) .service-icon {
  color: #374151;
}

/* Footer */
.footer-container {
  padding: 0 24px 24px;
}

.footer-card {
  padding: 16px;
  border-radius: 12px;
  background: rgba(31, 41, 55, 0.3);
  border: 1px solid #374151;
}

.footer-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-indicator {
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.footer-title {
  font-size: 12px;
  font-weight: 500;
  color: #d1d5db;
  margin-bottom: 4px;
}

.footer-description {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 480px) {
  .header {
    padding: 16px;
  }

  .main-card-container,
  .services-grid,
  .footer-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .main-card-content {
    padding: 20px;
  }

  .service-content {
    padding: 20px;
  }

  .stats-grid {
    gap: 12px;
  }

  .services-grid {
    gap: 12px;
  }
}

.page-id-176 header,
.page-id-176 .site-header,
.page-id-176 .main-header,
.page-id-176 .header,
.page-id-176 nav,
.page-id-176.main-navigation,
.page-id-176 footer,
.page-id-176 .site-footer,
.page-id-176 #colophon,
.page-id-176 h1.entry-title {
  display: none !important;
}
For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

