body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #24323d;
  background-color: #ffffff;
}

p {
  margin-bottom: 24px;
}

header h1 a {
  color: inherit;
  text-decoration: none;
}

header h1 a:hover,
header h1 a:focus {
  text-decoration: underline;
}

a.btn-hero {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  background-color: #035f96;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(3, 95, 150, 0.25);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
a.btn-hero:hover, a.btn-hero:focus {
  background-color: rgb(1.5, 47.5, 75);
  box-shadow: 0 12px 20px rgba(3, 95, 150, 0.35);
  transform: translateY(-1px);
}
a.btn-hero:active {
  transform: translateY(0);
  box-shadow: 0 6px 10px rgba(3, 95, 150, 0.25);
}
a.btn-hero:focus-visible {
  outline: 3px solid rgba(3, 95, 150, 0.4);
  outline-offset: 3px;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #d6e3ee;
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  background-color: #fff;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #035f96;
  box-shadow: 0 0 0 3px rgba(3, 95, 150, 0.15);
}

button {
  padding: 0.7rem 1.4rem;
  background-color: #035f96;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
button:hover {
  background-color: rgb(1.5, 47.5, 75);
}

.contact-info {
  margin-bottom: 30px;
}
.contact-info p {
  margin: 8px 0 24px;
  color: #5a6b78;
}

footer {
  margin-top: 80px;
  padding: 30px 20px;
  background-color: #f4f8fb;
  text-align: center;
  color: #5a6b78;
  font-size: 0.9rem;
}

.site-header {
  background: linear-gradient(180deg, rgba(4, 116, 184, 0.15), #ffffff);
  padding: 40px 20px;
}

.header-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 24px;
}
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    flex-wrap: wrap;
  }
}

.logo {
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  .logo {
    position: static;
  }
}
.logo img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  display: block;
}
@media (max-width: 1000px) {
  .logo img {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 768px) {
  .logo img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }
}

.header-content {
  flex: 1 1 auto;
  text-align: center;
  min-width: 0;
}

.header-content h1 {
  margin: 0 0 10px;
  font-size: 2.9rem;
}
@media (max-width: 1000px) {
  .header-content h1 {
    font-size: 2.1rem;
  }
}
@media (max-width: 768px) {
  .header-content h1 {
    font-size: 1.8rem;
  }
}

.header-content a {
  text-decoration: none;
}
.header-content nav a {
  margin-right: 18px;
  text-decoration: none;
  font-weight: 600;
  color: #5a6b78;
}
@media (max-width: 768px) {
  .header-content nav a {
    margin: 0 10px 8px;
    display: inline-block;
  }
}
.header-content nav a:hover {
  color: #035f96;
}
.header-content h1 a {
  color: rgb(1.5, 47.5, 75);
  text-decoration: none;
}

@media (max-width: 768px) {
  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
nav a {
  margin: 0 14px;
  font-weight: 600;
  color: #5a6b78;
  position: relative;
}
@media (max-width: 768px) {
  nav a {
    margin: 5px 10px;
  }
}
nav a:hover {
  color: #035f96;
}

.hero {
  padding: 80px 20px 140px;
  text-align: center;
}
@media (max-width: 768px) {
  .hero {
    padding: 40px 20px 80px;
  }
}
.hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .hero h2 {
    font-size: 1.5rem;
  }
}
.hero p {
  max-width: 600px;
  margin: 0 auto 26px;
  color: #5a6b78;
  font-size: 1.05rem;
}

.section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}
@media (max-width: 768px) {
  .section {
    padding: 40px 15px;
  }
}
.section.section--alt {
  max-width: 100%;
  background-color: #f4f8fb;
  border-top: 1px solid #d6e3ee;
  border-bottom: 1px solid #d6e3ee;
}
.section.section--alt .section-inner {
  max-width: 900px;
  margin: 0 auto;
}
.section h2 {
  margin-bottom: 24px;
  color: rgb(1.5, 47.5, 75);
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: -0.01em;
}
.section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: #035f96;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .section h2 {
    font-size: 1.8rem;
    text-align: center;
  }
  .section h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.section p,
.section li {
  color: #24323d;
  line-height: 1.6;
}

#services ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
#services ul li {
  margin-bottom: 0;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  border-left: 4px solid #035f96;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}
#services ul li:hover {
  transform: translateY(-2px);
}

.hours table {
  width: 100%;
  border-collapse: collapse;
  background-color: #f4f8fb;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hours table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

.hours th,
.hours td {
  padding: 10px 12px;
  border-bottom: 1px solid #d6e3ee;
}

.hours th {
  background-color: rgba(4, 116, 184, 0.15);
  text-align: left;
}

.contact-info {
  margin-bottom: 30px;
}
.contact-info p {
  margin: 8px 0 24px;
  color: #5a6b78;
}

/*# sourceMappingURL=sections-page.css.map */
