/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Imprima', sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  line-height: 1.5;
  background-color: #f9f9f9;
  color: #2e3a59;
}

/* Header */
header {
  background: gold;
  padding: 2rem;
  text-align: center;
}

header h1 {
  font-weight: bold;
}

/* Section Base */
.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 1000px) {
  .section {
    padding: 1rem;
  }
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery img {
  width: 100%;
  border-radius: 0.5rem;
  object-fit: cover;
  height: 14rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background: gold;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.95rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.card,
.card-with-image {
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  background-color: #fff;
}

.card,
.card-with-image .info {
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.card-with-image .info {
  padding-top: 0;
}

.icon-tabler {
  stroke: #555;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.25rem;
}
.card:nth-child(1) .icon svg {
  stroke: #e63946;
}
.card:nth-child(2) .icon svg {
  stroke: #1a52a0;
}
.card:nth-child(3) .icon svg {
  stroke: #2a9d8f;
}
.card:nth-child(4) .icon svg {
  stroke: #ff9f1c;
}
.card:nth-child(5) .icon svg {
  stroke: #6a4c93;
}
.card:nth-child(6) .icon svg {
  stroke: red;
}
.card:nth-child(7) .icon svg {
  stroke: #118ab2;
}

.card-with-image img {
  width: 100%;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  height: 12rem;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}
.testimonial {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 32px;
  width: 100%;
  margin-bottom: 1rem;
}

.quote {
  color: #495057;
  margin-bottom: 24px;
  font-style: italic;
}

.author {
  font-size: 0.9rem;
  color: #888;
}
b,
strong {
  font-weight: bold;
}
