:root {
  --primary-color: #0056b3;
  --secondary-color: #007bff;
  --text-color: #333;
  --background-color: #f8f9fa;
  --light-grey: #e9ecef;
  --border: hsl(0 0% 70%);
  --highlight: hsl(0 0% 90%);
  --gradient: linear-gradient(0deg, var (--bg) 95%, var(--bd-light));
  --border-card: solid 1px var(--border);
  --shadow: 0px 2px hsla(0, 0%, 0%, 0.07), 0px 4px 4px hsla(0, 0%, 0%, 0.15);
  --padding: clamp(2.5rem, 8vw, 3.75rem) clamp(1rem, 4vw, 1.25rem);
  --width: clamp(280px, 90%, 1100px);

}
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
  scroll-behavior: smooth;
}
section {
  padding: var(--padding);
  text-align: center;
  background-color: white;
  border-bottom: 1px solid var(--light-grey);
}
section:nth-of-type(even) {
  background-color: var(--background-color);
}
h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: var(--primary-color);
  margin-bottom: 30px;
}
.box {
  padding: var(--padding);
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: var(--width);
  box-shadow: var(--shadow);
}
.info-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 5vw, 2rem);
  margin: 0 auto;
  justify-items: center;
  width: var(--width);
}
.info-item {
  display: flex;
  flex-direction: column;
  padding: var(--padding);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  width: 100%;
  background: #fff;
  border-radius: 4px;
  border: var(--border-card);
  border-top: solid 1px var(--highlight);
}
.info-item:hover {
  transform: translateY(-5px);
}
.info-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}
.reasons-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 5vw, 2rem);
  margin: 0 auto;
  width: var(--width);
}
.reason-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 4px;
  border: var(--border-card);
  border-top: solid 1px var(--highlight);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 5vw, 2rem);
  text-align: left;
  transition: transform 0.3s ease;
}
.reason-item:hover {
  transform: translateY(-5px);
}
.reason-item h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--primary-color);
  margin-top: 0;
}
.reason-item p {
  margin-top: 0;
  margin-bottom: 1em;
}
.reason-item p:last-of-type {
  margin-bottom: 0;
}
#about img {
  max-width: 250px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 4px solid var(--light-grey);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
#about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1em;
  color: #555;
}

#contact .contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
#contact .contact-info a {
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}
#contact .contact-info a:hover {
  text-decoration: underline;
}
.social-links a {
  text-decoration: none;
}
.footer-link-subtle:hover {
  color: #007bff;
  text-decoration: none;
}

.service-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: clamp(1.5rem, 5vw, 2rem);
  text-align: left;
}
.service-map {
  flex: 1 1 352px;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
}
.service-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.service-cities {
  flex: 1 1 352px;
}
.service-cities ul {
  list-style-type: disc;
  padding-left: 20px;
}
.logo-placeholder {
  margin: 20px auto 0;
  text-align: center;
}
.logo-placeholder img {
  max-width: 200px;
  opacity: 0.8;
}
