<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * @file
 * Styles for the GUDE Contact block.
 */

.block--gude-contact {
  padding: 0;
  margin: 0;
  color: #fff;
}

.contact-info-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  background-color: white;
}

.contact-item {
  flex: 1;
  padding: 30px 20px;
  border-right: 1px solid #e0e0e0;
}

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

.contact-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-item .icon {
  color: #ff6600;
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-item h3 {
  color: #ff6600;
  margin: 0 0 15px 0;
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
}

.contact-item p {
  margin: 0 0 5px 0;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-info-container {
    flex-direction: column;
  }
  
  .contact-item {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .contact-item:last-child {
    border-bottom: none;
  }
}
</pre></body></html>