body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #FFEB3B;
  text-align: center;
  padding-bottom: 40px;
}

h1, h2, h3 { margin: 0; }

.title-header {
  font-size: clamp(18px, 4vw, 32px);
  line-height: 1.3;
  word-break: break-word;
  padding: 0 12px;
}

.contact-section {
  text-align: center;
  padding: 20px;
}

.contact-main-photo {
  width: 100%;
}

.contact-buttons img {
  width: 60px;
  margin: 10px;
}

.full-width-img {
  width: 100%;
  height: auto !important;
  max-height: none !important;
  display: block;
}

.section-text, .section-center {
  text-align: center;
  margin: 20px;
}

.map-photo {
  width: 100%;
}

.description {
  padding: 0 20px;
}

.card {
  margin: 20px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.yellow-card {
  background: #fff9b0;
}

.list {
  list-style: none;
  padding: 0;
}

.list li {
  margin: 10px 0;
  font-size: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
  text-align: center;
}

.work-item span {
  font-size: 32px;
}

.support-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.support-card {
  background: #ffd600;
  color: black;
  padding: 20px;
  border-radius: 12px;
  width: 260px;
  text-align: center;
}

.support-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 12px;
  background: white;
  border-radius: 8px;
  color: black;
  text-decoration: none;
}

.brands-card {
  background: white;
  padding: 20px;
  width: 260px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.brands-grid img {
  width: 50px;
}

.italic { font-style: italic; }

