@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Source+Sans+Pro:wght@400;600&display=swap');

:root {
  --primary: hsl(225, 63%, 30%);
  --secondary: hsl(253, 62%, 14%);
  --accent: hsl(201, 80%, 49%);
  --color-primary: hsl(225, 63%, 30%);
  --color-secondary: hsl(253, 62%, 14%);
  --color-accent: hsl(201, 80%, 49%);
}

body{
  font-family: 'Source Sans Pro', sans-serif;
  color: #222;
  background-color: #fff;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.navbar{
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
}
.navbar-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--secondary);
}
.navbar-brand:hover{
  color: var(--accent);
}
.navbar-nav .nav-link{
  color: var(--secondary);
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
}
.navbar-nav .nav-link:hover{
  color: var(--accent);
  background-color: #f2f5fa;
}
.navbar-toggler{
  border-radius: 6px;
}

footer{background:hsl(253,62%,14%);color:#f5f5f5;padding:48px 0 24px;font-family:'Source Sans Pro',sans-serif;}
footer h5{font-family:'Montserrat',sans-serif;color:#fff;margin-bottom:16px;font-size:1.1rem;}
footer p, footer li, footer a{color:#e5e5e5;}
footer a{text-decoration:none;transition:color .2s;}
footer a:hover{color:hsl(201,80%,49%);}
footer ul{list-style:none;padding-left:0;}
footer ul li{margin-bottom:8px;}
.footer-divider{border-color:rgba(255,255,255,0.15);margin:32px 0 16px;}
.social-icons a{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:8px;background:hsl(225,63%,30%);color:#fff;margin-right:8px;font-size:1.1rem;transition:background .2s;}
.social-icons a:hover{background:hsl(201,80%,49%);color:#fff;}
.footer-bottom{font-size:0.9rem;color:#cfcfcf;}
#privacyBanner{position:fixed;bottom:0;left:0;right:0;z-index:1055;background:hsl(253,62%,14%);color:#f5f5f5;border-top:3px solid hsl(201,80%,49%);max-height:60vh;overflow-y:auto;font-family:'Source Sans Pro',sans-serif;}
#privacyBanner h6{font-family:'Montserrat',sans-serif;color:#fff;margin-bottom:8px;}
#privacyBanner p, #privacyBanner li{color:#e5e5e5;font-size:0.9rem;}
#privacyBanner .cookie-cat{background:hsl(225,63%,30%);border-radius:8px;padding:10px 14px;margin-bottom:8px;}
#privacyBanner .cookie-cat strong{color:#fff;}
.btn-cookie-accept{background:hsl(201,80%,49%);border:none;color:#fff;border-radius:8px;padding:10px 20px;font-weight:600;transition:background .2s;}
.btn-cookie-accept:hover{background:hsl(225,63%,30%);color:#fff;}
.btn-cookie-reject{background:transparent;border:2px solid hsl(201,80%,49%);color:#fff;border-radius:8px;padding:8px 20px;font-weight:600;transition:background .2s;}
.btn-cookie-reject:hover{background:hsl(201,80%,49%);color:#fff;}
.btn-cookie-manage{color:hsl(201,80%,49%);text-decoration:underline;font-size:0.9rem;}
.btn-cookie-manage:hover{color:#fff;}

.hero-section {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: #222;
}

.hero-section h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(253, 62%, 14%);
  font-size: 2rem;
  margin-bottom: 12px;
}

.hero-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: hsl(225, 63%, 30%);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.hero-description {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 20px;
}

.hero-points {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.hero-points li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #222;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.hero-points i {
  color: hsl(201, 80%, 49%);
  font-size: 1.1rem;
  margin-top: 2px;
}

.hero-info-block {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 24px;
}

.hero-info-block p {
  margin: 0 0 6px 0;
  font-size: 0.95rem;
  color: #333;
}

.hero-info-block p:last-child {
  margin-bottom: 0;
}

.hero-info-block i {
  color: hsl(225, 63%, 30%);
  width: 18px;
}

.hero-btn-primary {
  background-color: hsl(201, 80%, 49%);
  border: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-btn-primary:hover {
  background-color: hsl(201, 80%, 40%);
  color: #fff;
  transform: translateY(-2px);
}

.hero-btn-secondary {
  background-color: transparent;
  border: 2px solid hsl(225, 63%, 30%);
  color: hsl(225, 63%, 30%);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-btn-secondary:hover {
  background-color: hsl(225, 63%, 30%);
  color: #fff;
}

.hero-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .hero-section {
    padding: 40px 0;
  }
  .hero-section h1 {
    font-size: 1.6rem;
  }
}

#company {
  background-color: #ffffff;
  color: #222222;
  padding: 52px 0;
  font-family: 'Source Sans Pro', sans-serif;
}
#company h2, #company h3 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(253, 62%, 14%);
}
#company .lead-text {
  color: hsl(225, 63%, 30%);
  font-weight: 600;
}
#company .about-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: 16px;
}
#company .value-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  height: 100%;
  border-left: 4px solid hsl(201, 80%, 49%);
}
#company .value-card h4 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(225, 63%, 30%);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
#company .value-card p {
  color: #333333;
  margin-bottom: 0;
  font-size: 0.95rem;
}
#company .stats-strip {
  background-color: hsl(225, 63%, 30%);
  color: #ffffff;
  border-radius: 8px;
  padding: 24px;
}
#company .stats-strip .stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: hsl(201, 80%, 49%);
}
#company .stats-strip .stat-label {
  font-size: 0.9rem;
  color: #f0f0f0;
}
#company p {
  color: #333333;
  line-height: 1.65;
}

.services-section {
  padding: 52px 0;
  background: #f5f5f5;
  font-family: 'Source Sans Pro', sans-serif;
  color: #222;
}
.services-section h2 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(253, 62%, 14%);
  font-weight: 700;
}
.services-section .lead {
  color: #333;
  max-width: 700px;
}
.service-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 28px 24px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(20, 20, 60, 0.15);
  border-color: hsl(201, 80%, 49%);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: hsl(225, 63%, 30%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: hsl(253, 62%, 14%);
  margin-bottom: 10px;
}
.service-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 14px;
}
.service-price {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  background: hsl(201, 80%, 49%);
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 0.95rem;
}

#value {
  padding: 52px 0;
  background-color: #f8f9fa;
  font-family: 'Source Sans Pro', sans-serif;
}
#value h2 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(253, 62%, 14%);
  font-weight: 700;
}
#value .lead-text {
  color: #333;
  max-width: 700px;
}
#value .adv-card {
  background: #fff;
  border: 1px solid #e2e5eb;
  border-radius: 8px;
  padding: 28px 22px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#value .adv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(21, 34, 92, 0.15);
  border-color: hsl(201, 80%, 49%);
}
#value .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background-color: hsl(225, 63%, 30%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
#value .adv-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  color: hsl(253, 62%, 14%);
  font-weight: 600;
  margin-bottom: 10px;
}
#value .adv-card p {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 0;
}

#our-approach {
  padding: 48px 0;
  background: #f8f9fa;
}
#our-approach h2 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(253, 62%, 14%);
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 8px;
}
#our-approach .lead-text {
  font-family: 'Source Sans Pro', sans-serif;
  color: #444;
  margin-bottom: 32px;
  font-size: 1rem;
}
#our-approach .approach-card {
  background: #fff;
  border: 1px solid #dfe3ea;
  border-radius: 8px;
  padding: 20px 18px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#our-approach .approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(23, 33, 78, 0.12);
}
#our-approach .approach-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: hsl(225, 63%, 30%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
#our-approach .approach-text {
  font-family: 'Source Sans Pro', sans-serif;
  color: #222;
  font-size: 0.98rem;
  line-height: 1.4;
  margin: 0;
}
#our-approach .wide-card {
  background: hsl(225, 63%, 30%);
  color: #fff;
}
#our-approach .wide-card .approach-icon {
  background: hsl(201, 80%, 49%);
}
#our-approach .wide-card .approach-text {
  color: #f2f5fb;
}

#deal {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #f5f5f5;
  padding: 48px 0;
}
#deal h2, #deal h3 {
  font-family: 'Montserrat', sans-serif;
}
#deal .deal-box {
  background-color: hsl(225, 63%, 30%);
  border-radius: 8px;
  padding: 40px;
  color: #f8f9fa;
}
#deal .deal-box h2 {
  color: #f8f9fa;
  font-size: 1.9rem;
  font-weight: 700;
}
#deal .deal-box p, #deal .deal-box li {
  color: #f8f9fa;
}
#deal .deal-date-block {
  background-color: hsl(253, 62%, 14%);
  border-radius: 8px;
  padding: 18px 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f8f9fa;
}
#deal .deal-date-block .bi {
  font-size: 1.6rem;
  color: hsl(201, 80%, 49%);
}
#deal .deal-date-block .date-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f8f9fa;
}
#deal .deal-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}
#deal .deal-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.98rem;
}
#deal .deal-list .bi {
  color: hsl(201, 80%, 49%);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
#deal .btn-deal {
  background-color: hsl(201, 80%, 49%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background-color 0.2s ease;
}
#deal .btn-deal:hover {
  background-color: hsl(201, 80%, 40%);
  color: #ffffff;
}

#voices {
  padding: 52px 0;
  background: #f5f5f5;
  font-family: 'Source Sans Pro', sans-serif;
}
#voices h2 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(253, 62%, 14%);
  font-weight: 700;
}
#voices .lead-text {
  color: #333;
  max-width: 680px;
}
#voices .review-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  border: 1px solid #e2e2e2;
  display: flex;
  flex-direction: column;
}
#voices .review-card .stars {
  color: hsl(201, 80%, 49%);
  font-size: 1rem;
  letter-spacing: 2px;
}
#voices .review-card .stars .empty {
  color: #ccc;
}
#voices .review-card .review-text {
  color: #333;
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 12px 0 16px;
}
#voices .review-card .reviewer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
#voices .review-card .avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: hsl(225, 63%, 30%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  flex-shrink: 0;
}
#voices .review-card .reviewer-info strong {
  display: block;
  color: hsl(253, 62%, 14%);
  font-size: 0.95rem;
}
#voices .review-card .reviewer-info span {
  color: #666;
  font-size: 0.85rem;
}
#voices .review-card.wide {
  border-left: 4px solid hsl(201, 80%, 49%);
}
#voices .review-card.compact {
  background: hsl(225, 63%, 30%);
  border: none;
}
#voices .review-card.compact .review-text, #voices .review-card.compact .reviewer-info span {
  color: #e8ecf7;
}
#voices .review-card.compact .reviewer-info strong {
  color: #fff;
}
#voices .review-card.compact .stars {
  color: hsl(201, 80%, 49%);
}
#voices .review-card.compact .avatar-circle {
  background: hsl(201, 80%, 49%);
  color: hsl(253, 62%, 14%);
}
#voices .badge-tag {
  display: inline-block;
  background: #eef1fa;
  color: hsl(225, 63%, 30%);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}
#voices .review-card.compact .badge-tag {
  background: hsla(0,0%,100%,0.15);
  color: #fff;
}
@media (max-width: 767px) {
  #voices { padding: 40px 0; }
}

#common-questions {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: #222;
}
#common-questions h2 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(253, 62%, 14%);
  font-weight: 700;
  margin-bottom: 12px;
}
#common-questions .lead-text {
  color: #333;
  margin-bottom: 40px;
  max-width: 720px;
}
#common-questions .accordion-item {
  border: 1px solid #dcdfe6;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}
#common-questions .accordion-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: hsl(253, 62%, 14%);
  background-color: #fff;
  border-radius: 8px;
}
#common-questions .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: hsl(225, 63%, 30%);
  box-shadow: none;
}
#common-questions .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 187, 0.25);
}
#common-questions .accordion-button::after {
  filter: none;
}
#common-questions .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
#common-questions .accordion-body {
  background-color: #fff;
  color: #333;
  line-height: 1.6;
  border-radius: 0 0 8px 8px;
}

#reach-us .contact-section {
  padding: 52px 0;
  background-color: #f8f9fa;
  color: #222;
  font-family: 'Source Sans Pro', sans-serif;
}
#reach-us .contact-section h2, #reach-us .contact-section h3 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(253, 62%, 14%);
}
#reach-us .contact-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  height: 100%;
}
#reach-us .contact-section .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'Source Sans Pro', sans-serif;
}
#reach-us .contact-section .form-control:focus {
  border-color: hsl(201, 80%, 49%);
  box-shadow: 0 0 0 0.2rem hsla(201, 80%, 49%, 0.25);
}
#reach-us .contact-section label {
  font-weight: 600;
  color: hsl(253, 62%, 14%);
  margin-bottom: 4px;
}
#reach-us .btn-submit {
  background-color: hsl(225, 63%, 30%);
  color: #ffffff;
  border-radius: 8px;
  border: none;
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
#reach-us .btn-submit:hover {
  background-color: hsl(201, 80%, 49%);
  color: #ffffff;
}
#reach-us .info-block {
  background-color: hsl(253, 62%, 14%);
  color: #f8f9fa;
  border-radius: 8px;
  padding: 32px;
  height: 100%;
}
#reach-us .info-block h3 {
  color: #ffffff;
}
#reach-us .info-block a {
  color: hsl(201, 80%, 49%);
  text-decoration: none;
  word-break: break-word;
}
#reach-us .info-block a:hover {
  text-decoration: underline;
  color: #ffffff;
}
#reach-us .info-block .info-item {
  margin-bottom: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
#reach-us .info-block .info-icon {
  color: hsl(201, 80%, 49%);
  font-size: 1.1rem;
  min-width: 24px;
}
#reach-us .hours-table {
  width: 100%;
  color: #f8f9fa;
  font-size: 0.95rem;
}
#reach-us .hours-table td {
  padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
#reach-us .find-us-note {
  font-size: 0.92rem;
  color: #d8d8e0;
  margin-top: 6px;
}

#legal-notice {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #f5f5f5;
  padding: 48px 0;
}
#legal-notice h2 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(225, 63%, 30%);
  font-weight: 700;
}
#legal-notice .notice-icon {
  color: hsl(201, 80%, 49%);
  font-size: 2rem;
  flex-shrink: 0;
}
#legal-notice .notice-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 32px;
}
#legal-notice p {
  color: #333333;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

#services-content {
  background: #ffffff;
  color: #222222;
  font-family: 'Source Sans Pro', sans-serif;
  padding: 52px 0;
}
#services-content h1, #services-content h2, #services-content h3 {
  font-family: 'Montserrat', sans-serif;
}
#services-content .page-intro {
  max-width: 760px;
  margin-bottom: 40px;
}
#services-content .page-intro h1 {
  color: hsl(253, 62%, 14%);
  font-size: 2rem;
  margin-bottom: 12px;
}
#services-content .page-intro p {
  color: #333333;
  font-size: 1.05rem;
}
#services-content .meta-line {
  color: hsl(225, 63%, 30%);
  font-weight: 600;
  margin-bottom: 8px;
}
#services-content .services-list {
  border-top: 1px solid #dcdfe6;
}
#services-content .service-item {
  border-bottom: 1px solid #dcdfe6;
  padding: 24px 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}
#services-content .service-item:hover {
  background: #f4f7fc;
  transform: translateX(3px);
}
#services-content .service-item .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: hsl(225, 63%, 30%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
#services-content .service-item h3 {
  font-size: 1.15rem;
  color: hsl(253, 62%, 14%);
  margin-bottom: 6px;
}
#services-content .service-item p {
  color: #333333;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
#services-content .price-tag {
  display: inline-block;
  background: hsl(201, 80%, 49%);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}
#services-content .divider-vertical {
  border-left: 1px solid #dcdfe6;
}
#services-content .qa-section {
  margin-top: 48px;
  border-top: 1px solid #dcdfe6;
  padding-top: 32px;
}
#services-content .qa-section h2 {
  color: hsl(253, 62%, 14%);
  font-size: 1.5rem;
  margin-bottom: 20px;
}
#services-content .qa-item {
  margin-bottom: 18px;
}
#services-content .qa-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: hsl(225, 63%, 30%);
  margin-bottom: 6px;
}
#services-content .qa-item p {
  color: #333333;
  margin-bottom: 0;
}
#services-content .cta-box {
  margin-top: 48px;
  background: hsl(225, 63%, 30%);
  color: #ffffff;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
}
#services-content .cta-box h2 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
#services-content .cta-box p {
  color: #e6ecf7;
  margin-bottom: 18px;
}
#services-content .cta-box .btn-accent {
  background: hsl(201, 80%, 49%);
  color: #ffffff;
  border: none;
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
#services-content .cta-box .btn-accent:hover {
  background: #ffffff;
  color: hsl(225, 63%, 30%);
}
@media (max-width: 767px) {
  #services-content .divider-vertical {
    border-left: none;
    border-top: 1px solid #dcdfe6;
    padding-top: 20px;
    margin-top: 20px;
  }
}

#contact-content {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #f8f9fa;
  color: #222;
  padding: 50px 0;
}
#contact-content h1,
#contact-content h2,
#contact-content h3 {
  font-family: 'Montserrat', sans-serif;
}
#contact-content .page-intro {
  max-width: 760px;
  margin-bottom: 40px;
}
#contact-content .form-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
#contact-content .form-label {
  font-weight: 600;
  color: hsl(253, 62%, 14%);
}
#contact-content .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
}
#contact-content .form-control:focus {
  border-color: hsl(201, 80%, 49%);
  box-shadow: 0 0 0 0.2rem rgba(30, 144, 218, 0.2);
}
#contact-content .btn-submit {
  background-color: hsl(201, 80%, 49%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}
#contact-content .btn-submit:hover {
  background-color: hsl(225, 63%, 30%);
  color: #fff;
}
#contact-content .info-card {
  background-color: hsl(225, 63%, 30%);
  color: #f8f9fa;
  border-radius: 8px;
  padding: 32px;
  height: 100%;
}
#contact-content .info-card h3 {
  color: #f8f9fa;
  margin-bottom: 20px;
  font-size: 1.25rem;
}
#contact-content .info-card p,
#contact-content .info-card a {
  color: #f8f9fa;
}
#contact-content .info-card a {
  text-decoration: underline;
}
#contact-content .info-card a:hover {
  color: hsl(201, 80%, 49%);
}
#contact-content .hours-table {
  color: #f8f9fa;
  font-size: 0.95rem;
  margin-bottom: 0;
}
#contact-content .hours-table td {
  padding: 3px 6px 3px 0;
  color: #f8f9fa;
  border-color: rgba(255,255,255,0.15);
}
#contact-content .find-us-box {
  background-color: hsl(253, 62%, 14%);
  color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-top: 24px;
}
#contact-content .find-us-box a {
  color: hsl(201, 80%, 49%);
  font-weight: 600;
  text-decoration: none;
}
#contact-content .find-us-box a:hover {
  text-decoration: underline;
}
#contact-content .cta-strip {
  background-color: #fff;
  border: 2px solid hsl(201, 80%, 49%);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  margin-top: 48px;
}
#contact-content .cta-strip a {
  background-color: hsl(225, 63%, 30%);
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  display: inline-block;
  margin-top: 12px;
}
#contact-content .cta-strip a:hover {
  background-color: hsl(201, 80%, 49%);
}



  

  .thankyou-section {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    font-family: 'Source Sans Pro', sans-serif;
  }

  .thankyou-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 3rem 2rem;
    max-width: 640px;
    width: 100%;
    text-align: center;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.7s ease-out;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .success-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-accent) 0%, var(--color-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(1, 132, 209, 0.15);
    animation: popIn 0.6s ease-out 0.2s both;
  }

  @keyframes popIn {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    80% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  .success-icon-wrapper svg {
    width: 50px;
    height: 50px;
    stroke: #ffffff;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .thankyou-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--color-secondary);
    font-size: 1.9rem;
    margin-bottom: 1rem;
  }

  .thankyou-subtext {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
  }

  .thankyou-highlight {
    color: var(--color-accent);
    font-weight: 600;
  }

  .info-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.75rem 0;
  }

  .info-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: hsl(201, 80%, 49%, 0.08);
    color: var(--color-primary);
    border: 1px solid hsl(201, 80%, 49%, 0.25);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .info-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-accent);
    fill: none;
    stroke-width: 2;
  }

  .btn-thankyou {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    background-color: var(--color-primary);
    border: none;
    color: #fff;
    padding: 0.75rem 2.25rem;
    border-radius: 0.6rem;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px hsl(225, 63%, 30%, 0.35);
  }

  .btn-thankyou:hover,
  .btn-thankyou:focus {
    background-color: var(--color-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px hsl(201, 80%, 49%, 0.4);
  }

  .thankyou-divider {
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 2px;
    margin: 1.5rem auto;
  }

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 2rem 1.25rem;
    }
    .thankyou-heading {
      font-size: 1.5rem;
    }
    .success-icon-wrapper {
      width: 80px;
      height: 80px;
    }
    .success-icon-wrapper svg {
      width: 40px;
      height: 40px;
    }
  }

#about-page {
  font-family: 'Source Sans Pro', sans-serif;
  color: #222;
  background-color: #fff;
  padding: 52px 0;
}

#about-page h1, #about-page h2, #about-page h3 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(253, 62%, 14%);
}

#about-page .page-header {
  margin-bottom: 50px;
}

#about-page .page-header h1 {
  color: hsl(225, 63%, 30%);
  font-size: 2.2rem;
  margin-bottom: 12px;
}

#about-page .page-header p {
  font-size: 1.05rem;
  color: #444;
  max-width: 700px;
}

#about-page section.block {
  margin-bottom: 50px;
}

#about-page h2 {
  font-size: 1.5rem;
  border-left: 4px solid hsl(201, 80%, 49%);
  padding-left: 14px;
  margin-bottom: 18px;
}

#about-page p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 14px;
}

#about-page .img-wrap {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

#about-page img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

#about-page .stats-strip {
  background-color: hsl(253, 62%, 14%);
  color: #f8f9fa;
  border-radius: 8px;
  padding: 30px 24px;
  margin-bottom: 50px;
}

#about-page .stats-strip h3 {
  color: #f8f9fa;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

#about-page .stats-strip .stat-number {
  font-size: 1.9rem;
  font-weight: 700;
  color: hsl(201, 80%, 49%);
  font-family: 'Montserrat', sans-serif;
}

#about-page .values-list {
  list-style: none;
  padding-left: 0;
}

#about-page .values-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  border-bottom: 1px solid #e5e5e5;
  color: #333;
}

#about-page .values-list li:last-child {
  border-bottom: none;
}

#about-page .values-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  background-color: hsl(201, 80%, 49%);
  border-radius: 3px;
}

#about-page .values-list strong {
  color: hsl(225, 63%, 30%);
}

#about-page .cta-box {
  background-color: hsl(225, 63%, 30%);
  color: #f8f9fa;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
}

#about-page .cta-box h2 {
  color: #f8f9fa;
  border-left: none;
  padding-left: 0;
}

#about-page .cta-box p {
  color: #e7ecf7;
}

#about-page .btn-cta {
  background-color: hsl(201, 80%, 49%);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 12px 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

#about-page .btn-cta:hover {
  background-color: hsl(201, 80%, 40%);
  color: #fff;
}

@media (max-width: 767px) {
  #about-page .page-header h1 {
    font-size: 1.7rem;
  }
}
