@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;700;800&family=Raleway:wght@400;500;600&display=swap');

:root {
  --primary: hsl(242, 29%, 39%);
  --secondary: hsl(270, 24%, 22%);
  --accent: hsl(218, 45%, 59%);
}

body{
font-family: 'Raleway', sans-serif;
color: #222;
background-color: #fff;
}
h1,h2,h3,h4,h5,h6{
font-family: 'Inter', sans-serif;
}
.navbar{
background-color: #fff;
border-bottom: 1px solid #e9e9ef;
}
.navbar-brand{
display: flex;
align-items: center;
gap: 10px;
font-family: 'Inter', sans-serif;
font-weight: 700;
color: var(--primary);
font-size: 1.35rem;
}
.navbar-brand img{
border-radius: 8px;
}
.navbar-nav .nav-link{
color: #222;
font-weight: 600;
padding: 10px 16px !important;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus{
color: var(--primary);
}
.navbar-toggler{
border-color: var(--primary);
}
.navbar-toggler-icon{
filter: none;
}



.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(242, 29%, 39%) 0%, hsl(270, 24%, 22%) 100%);
  font-family: 'Raleway', sans-serif;
  padding: 3rem 1rem;
}

.thankyou-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 3rem 2.5rem;
  max-width: 620px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.thankyou-icon-wrapper {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  background: hsl(218, 45%, 59%, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.5s ease-out;
}

.thankyou-icon-wrapper svg {
  width: 52px;
  height: 52px;
}

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

.thankyou-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: hsl(270, 24%, 22%);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.thankyou-text {
  font-family: 'Raleway', sans-serif;
  color: #55536b;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.thankyou-divider {
  width: 60px;
  height: 4px;
  background: hsl(218, 45%, 59%);
  border-radius: 2px;
  margin: 1.5rem auto;
}

.thankyou-note {
  background: hsl(218, 45%, 59%, 0.08);
  border-left: 4px solid hsl(218, 45%, 59%);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  text-align: left;
  margin: 1.75rem 0;
  color: hsl(270, 24%, 22%);
  font-size: 0.95rem;
}

.thankyou-note i {
  color: hsl(218, 45%, 59%);
  margin-right: 0.5rem;
}

.btn-thankyou-home {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  background: hsl(242, 29%, 39%);
  border: none;
  color: #fff;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px hsl(242, 29%, 39%, 0.35);
}

.btn-thankyou-home:hover {
  background: hsl(270, 24%, 22%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px hsl(270, 24%, 22%, 0.4);
}

@media (max-width: 576px) {
  .thankyou-card {
    padding: 2.25rem 1.5rem;
  }
  .thankyou-heading {
    font-size: 1.6rem;
  }
  .thankyou-icon-wrapper {
    width: 80px;
    height: 80px;
  }
  .thankyou-icon-wrapper svg {
    width: 42px;
    height: 42px;
  }
}

footer {
  background: hsl(270, 24%, 22%);
  color: #f5f5f5;
  font-family: 'Raleway', sans-serif;
  padding: 48px 0 24px;
}
footer h5, footer h6 {
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  margin-bottom: 16px;
}
footer a {
  color: #d8d5e8;
  text-decoration: none;
}
footer a:hover {
  color: hsl(218, 45%, 59%);
  text-decoration: underline;
}
footer p {
  color: #d8d5e8;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: hsl(242, 29%, 39%);
  color: #ffffff;
  border-radius: 8px;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: background 0.2s ease;
}
.footer-social a:hover {
  background: hsl(218, 45%, 59%);
  color: #ffffff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 32px;
  padding-top: 16px;
  font-size: 0.9rem;
  color: #c7c3dc;
}
#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1055;
  background: hsl(270, 24%, 22%);
  color: #f5f5f5;
  border-top: 3px solid hsl(218, 45%, 59%);
  padding: 16px 0;
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Raleway', sans-serif;
}
#cookieNotice h6 {
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  margin-bottom: 6px;
}
#cookieNotice p, #cookieNotice li {
  color: #d8d5e8;
  font-size: 0.88rem;
  margin-bottom: 6px;
}
#cookieNotice ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 7px;
  padding: 10px 18px;
  font-size: 0.92rem;
  border: none;
  transition: all 0.2s ease;
  width: 100%;
}
.btn-accept {
  background: hsl(218, 45%, 59%);
  color: #ffffff;
}
.btn-accept:hover {
  background: hsl(242, 29%, 39%);
  color: #ffffff;
}
.btn-reject {
  background: hsl(242, 29%, 39%);
  color: #ffffff;
}
.btn-reject:hover {
  background: hsl(270, 24%, 22%);
  color: #ffffff;
  border: 1px solid #f5f5f5;
}
.cookie-manage-link {
  color: #d8d5e8;
  font-size: 0.85rem;
  text-decoration: underline;
}
.cookie-manage-link:hover {
  color: hsl(218, 45%, 59%);
}

.hero-compact {
  background-color: #f8f9fa;
  padding: 56px 0 40px 0;
}
.hero-compact h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: hsl(270, 24%, 22%);
  font-size: 2.4rem;
}
.hero-compact h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: hsl(242, 29%, 39%);
  font-size: 1.25rem;
  margin-top: 8px;
}
.hero-compact p {
  font-family: 'Raleway', sans-serif;
  color: #333333;
  font-size: 1.05rem;
  max-width: 700px;
  margin-top: 16px;
}
.hero-cta-btn {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  background-color: hsl(242, 29%, 39%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.05rem;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}
.hero-cta-btn:hover {
  background-color: hsl(218, 45%, 59%);
  color: #ffffff;
  transform: translateY(-2px);
}

.services-section{
  background:#f8f9fa;
  padding:52px 0;
  font-family:'Raleway',sans-serif;
  color:#222;
}
.services-section h2{
  font-family:'Inter',sans-serif;
  color:hsl(242,29%,39%);
  font-weight:800;
}
.services-section .lead-text{
  color:#333;
  max-width:720px;
}
.service-card{
  display:flex;
  align-items:flex-start;
  gap:20px;
  background:#fff;
  border:1px solid #e6e6ee;
  border-radius:8px;
  padding:22px;
  height:100%;
  transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 24px rgba(45,38,90,0.15);
  border-color:hsl(218,45%,59%);
}
.service-icon{
  flex-shrink:0;
  width:58px;
  height:58px;
  border-radius:8px;
  background:hsl(242,29%,39%);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.6rem;
  transition:background 0.25s ease;
}
.service-card:hover .service-icon{
  background:hsl(218,45%,59%);
}
.service-body h3{
  font-family:'Inter',sans-serif;
  font-size:1.05rem;
  font-weight:700;
  color:hsl(270,24%,22%);
  margin-bottom:6px;
}
.service-body p{
  font-size:0.92rem;
  color:#444;
  margin-bottom:10px;
  line-height:1.5;
}
.service-price{
  display:inline-block;
  font-family:'Inter',sans-serif;
  font-weight:700;
  font-size:0.95rem;
  color:#fff;
  background:hsl(270,24%,22%);
  padding:4px 12px;
  border-radius:6px;
}
.services-section .section-tag{
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:0.8rem;
  font-weight:700;
  color:hsl(218,45%,59%);
}
@media (max-width:576px){
  .service-card{
    flex-direction:column;
    align-items:flex-start;
  }
}

#projects {
  padding: 52px 0;
  background: #f8f9fa;
  font-family: 'Raleway', sans-serif;
  color: #222;
}
#projects h2, #projects h3, #projects h4, #projects .modal-title {
  font-family: 'Inter', sans-serif;
}
#projects .section-heading {
  color: hsl(242, 29%, 39%);
  font-weight: 700;
}
#projects .section-sub {
  color: #444;
  max-width: 700px;
}
#projects .project-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
#projects .project-card:hover {
  box-shadow: 0 8px 20px rgba(42, 30, 90, 0.15);
  transform: translateY(-3px);
}
#projects .project-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eee;
}
#projects .project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#projects .project-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#projects .project-badge {
  display: inline-block;
  background: hsl(218, 45%, 59%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 6px;
  margin-bottom: 10px;
  align-self: flex-start;
}
#projects .project-title {
  color: hsl(270, 24%, 22%);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
#projects .project-desc {
  color: #444;
  font-size: 0.92rem;
  line-height: 1.5;
  flex-grow: 1;
}
#projects .project-link-btn {
  margin-top: 14px;
  background: hsl(242, 29%, 39%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  align-self: flex-start;
}
#projects .project-link-btn:hover {
  background: hsl(270, 24%, 22%);
  color: #fff;
}
#projects .modal-content {
  border-radius: 8px;
  border: none;
}
#projects .modal-header {
  background: hsl(242, 29%, 39%);
  color: #fff;
  border-radius: 8px 8px 0 0;
}
#projects .modal-header .btn-close {
  filter: invert(1);
}
#projects .modal-body {
  color: #333;
}
#projects .modal-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 6px;
  background: #eee;
  margin-bottom: 16px;
}
#projects .modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#projects .modal-badge {
  display: inline-block;
  background: hsl(218, 45%, 59%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
}
@media (max-width: 576px) {
  #projects .project-title { font-size: 1rem; }
}

#numbers {
  background: #f8f9fa;
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
}
#numbers h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(242, 29%, 39%);
  font-weight: 700;
}
#numbers .lead-text {
  color: #333;
  max-width: 700px;
}
#numbers .stat-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  border: 1px solid #e5e5e5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#numbers .stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
#numbers .stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: hsl(218, 45%, 59%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  font-size: 1.6rem;
  animation: popIn 0.6s ease-out;
}
@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}
#numbers .stat-number {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: hsl(242, 29%, 39%);
  display: block;
  position: relative;
}
#numbers .stat-number::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: hsl(218, 45%, 59%);
  margin: 8px auto 0 auto;
  border-radius: 3px;
}
#numbers .stat-label {
  color: hsl(270, 24%, 22%);
  font-weight: 600;
  margin-top: 10px;
  font-size: 0.98rem;
}
#numbers .stat-context {
  color: #555;
  font-size: 0.85rem;
  margin-top: 4px;
}
@media (max-width: 576px) {
  #numbers .stat-number { font-size: 1.8rem; }
}

#reviews {
  font-family: 'Raleway', sans-serif;
  background: #f8f9fa;
  padding: 52px 0;
  color: #222;
}
#reviews h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(242, 29%, 39%);
  font-weight: 700;
}
#reviews .lead-sub {
  color: #444;
  max-width: 680px;
  margin: 0 auto;
}
#reviews .review-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  border: 1px solid #e6e6ea;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}
#reviews .review-card .stars {
  color: hsl(218, 45%, 59%);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
#reviews .review-card .star-empty {
  color: #d8d8de;
}
#reviews .review-card .review-text {
  color: #2c2c2c;
  flex-grow: 1;
  margin-bottom: 14px;
}
#reviews .review-card .reviewer-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: hsl(270, 24%, 22%);
  margin-bottom: 0;
}
#reviews .review-card .reviewer-loc {
  font-size: 0.85rem;
  color: #6b6b70;
}
#reviews .review-card.featured {
  background: hsl(242, 29%, 39%);
  color: #fff;
  border: none;
}
#reviews .review-card.featured .review-text, #reviews .review-card.featured .reviewer-loc {
  color: #ecebf5;
}
#reviews .review-card.featured .reviewer-name {
  color: #fff;
}
#reviews .review-card.featured .stars {
  color: #ffd875;
}
#reviews .review-card.featured .star-empty {
  color: rgba(255,255,255,0.3);
}
#reviews .review-card.accent-border {
  border-left: 4px solid hsl(218, 45%, 59%);
}
#reviews .review-badge {
  display: inline-block;
  background: hsl(218, 45%, 59%);
  color: #fff;
  font-size: 0.72rem;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  width: fit-content;
}
#reviews .review-card.short-card {
  justify-content: center;
}
#reviews .review-card.short-card .review-text {
  font-size: 1.05rem;
  font-style: italic;
}
#reviews .reviews-summary {
  background: hsl(270, 24%, 22%);
  color: #fff;
  border-radius: 8px;
  padding: 18px 22px;
}
#reviews .reviews-summary strong {
  color: #fff;
  font-size: 1.6rem;
  font-family: 'Inter', sans-serif;
}
#reviews .reviews-summary span {
  color: #d9d6e6;
  font-size: 0.85rem;
}
@media (max-width: 767px) {
  #reviews .review-card { padding: 20px; }
}

#updates {
  background: hsl(270, 24%, 22%);
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
}
#updates h2 {
  font-family: 'Inter', sans-serif;
  color: #fff;
  font-weight: 700;
}
#updates p {
  color: #e4e1ec;
  max-width: 600px;
}
#updates .newsletter-form {
  background: hsl(242, 29%, 39%);
  border-radius: 8px;
  padding: 32px;
}
#updates .form-control {
  border-radius: 6px;
  border: none;
  padding: 12px 16px;
  font-family: 'Raleway', sans-serif;
}
#updates .btn-subscribe {
  background: hsl(218, 45%, 59%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: background 0.2s ease;
}
#updates .btn-subscribe:hover {
  background: hsl(218, 45%, 49%);
  color: #fff;
}
#updates small {
  color: #cfcbe0;
}

#questions {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
  color: #222;
}
#questions h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(242, 29%, 39%);
  font-weight: 700;
}
#questions .lead-text {
  color: #333;
  max-width: 720px;
  margin: 0 auto 32px auto;
}
#questions .accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}
#questions .accordion-button {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #fff;
  background-color: hsl(242, 29%, 39%);
  border-radius: 8px;
}
#questions .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: hsl(270, 24%, 22%);
  box-shadow: none;
}
#questions .accordion-button::after {
  filter: brightness(0) invert(1);
}
#questions .accordion-button:focus {
  box-shadow: none;
  border-color: hsl(218, 45%, 59%);
}
#questions .accordion-body {
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

#contact {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
  color: #222;
}
#contact h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(242, 29%, 39%);
  font-weight: 700;
}
#contact p, #contact li, #contact a {
  font-family: 'Raleway', sans-serif;
}
#contact .contact-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  height: 100%;
}
#contact .contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
#contact .contact-info-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
#contact .contact-info-list .icon-box {
  background-color: hsl(218, 45%, 59%);
  color: #fff;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
#contact .contact-info-list a {
  color: hsl(242, 29%, 39%);
  text-decoration: none;
  font-weight: 600;
}
#contact .contact-info-list a:hover {
  color: hsl(218, 45%, 59%);
  text-decoration: underline;
}
#contact .contact-info-list span.text-body {
  color: #333;
}
#contact .map-link {
  display: inline-block;
  margin-top: 4px;
  color: hsl(218, 45%, 59%);
  font-weight: 600;
  text-decoration: underline;
}
#contact .map-link:hover {
  color: hsl(242, 29%, 39%);
}
#contact .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 10px 14px;
  font-family: 'Raleway', sans-serif;
}
#contact .form-control:focus {
  border-color: hsl(218, 45%, 59%);
  box-shadow: 0 0 0 0.2rem hsla(218, 45%, 59%, 0.25);
}
#contact .btn-submit {
  background-color: hsl(242, 29%, 39%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
#contact .btn-submit:hover {
  background-color: hsl(270, 24%, 22%);
  color: #fff;
}
#contact .hours-box {
  background-color: hsl(270, 24%, 22%);
  color: #fff;
  border-radius: 8px;
  padding: 18px 20px;
  margin-top: 8px;
}
#contact .hours-box strong {
  color: #fff;
}
#contact .hours-box .row-line {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-size: 0.95rem;
}
#contact .hours-box .row-line:last-child {
  border-bottom: none;
}

#legal {
    font-family: 'Raleway', sans-serif;
    background-color: #f5f5f5;
    padding: 52px 0;
}
#legal h2 {
    font-family: 'Inter', sans-serif;
    color: hsl(242, 29%, 39%);
    font-weight: 700;
}
#legal .legal-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 32px;
}
#legal .icon-wrap {
    width: 56px;
    height: 56px;
    background-color: hsl(218, 45%, 59%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
#legal .icon-wrap i {
    color: #ffffff;
    font-size: 1.6rem;
}
#legal p {
    color: #333333;
    line-height: 1.7;
    margin-bottom: 0;
}

#about-page {
  font-family: 'Raleway', sans-serif;
  color: #2a2a2a;
  background: #f8f9fa;
  padding: 52px 0;
}
#about-page h1, #about-page h2, #about-page h3 {
  font-family: 'Inter', sans-serif;
}
#about-page .about-hero {
  background: hsl(242, 29%, 39%);
  color: #f8f9fa;
  padding: 48px 32px;
  border-radius: 8px;
  margin-bottom: 52px;
}
#about-page .about-hero h1 {
  color: #ffffff;
  font-weight: 700;
}
#about-page .about-hero p {
  color: #e9e8f2;
  max-width: 760px;
  margin: 0 auto;
}
#about-page .about-block {
  margin-bottom: 48px;
}
#about-page .about-block h2 {
  color: hsl(242, 29%, 39%);
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 1.6rem;
}
#about-page .about-block p {
  line-height: 1.7;
  color: #333333;
}
#about-page img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
#about-page .stat-card {
  background: #ffffff;
  border: 1px solid #e2e2e8;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  height: 100%;
}
#about-page .stat-card .num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: hsl(218, 45%, 59%);
}
#about-page .stat-card .label {
  color: #555555;
  font-size: 0.95rem;
}
#about-page .values-card {
  background: hsl(270, 24%, 22%);
  color: #f5f5f5;
  border-radius: 8px;
  padding: 24px;
  height: 100%;
}
#about-page .values-card h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
#about-page .values-card p {
  color: #e6e4ee;
  font-size: 0.95rem;
  margin: 0;
}
#about-page .cta-box {
  background: hsl(218, 45%, 59%);
  color: #ffffff;
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  margin-top: 52px;
}
#about-page .cta-box h2 {
  color: #ffffff;
  font-weight: 700;
}
#about-page .cta-box p {
  color: #eef2fa;
}
#about-page .cta-box .btn {
  background: #ffffff;
  color: hsl(242, 29%, 39%);
  border: none;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 6px;
}
#about-page .cta-box .btn:hover {
  background: #eef2fa;
  color: hsl(270, 24%, 22%);
}
#about-page .img-caption {
  font-size: 0.85rem;
  color: #6b6b6b;
  margin-top: 8px;
}

#contact-content {
  background: #f8f9fa;
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
  color: #262230;
}
#contact-content h1, #contact-content h2, #contact-content h3 {
  font-family: 'Inter', sans-serif;
}
#contact-content .lead-text {
  color: #3a3550;
  max-width: 700px;
}
#contact-content .contact-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  height: 100%;
}
#contact-content .info-block {
  background: hsl(270, 24%, 22%);
  color: #f5f5f5;
  border-radius: 8px;
  padding: 32px;
}
#contact-content .info-block h3 {
  color: #fff;
  margin-bottom: 18px;
}
#contact-content .info-block a {
  color: #cfd6f0;
  text-decoration: none;
}
#contact-content .info-block a:hover {
  color: #fff;
  text-decoration: underline;
}
#contact-content .info-row {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}
#contact-content .info-row i {
  color: hsl(218, 45%, 59%);
  font-size: 1.1rem;
  margin-top: 3px;
}
#contact-content .map-link {
  display: inline-block;
  margin-top: 6px;
  color: hsl(218, 45%, 70%);
  font-weight: 600;
  font-size: 0.92rem;
}
#contact-content .map-link:hover {
  color: #fff;
}
#contact-content .form-label {
  font-weight: 600;
  color: #262230;
}
#contact-content .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 10px 14px;
}
#contact-content .form-control:focus {
  border-color: hsl(218, 45%, 59%);
  box-shadow: 0 0 0 0.2rem rgba(94,120,190,0.2);
}
#contact-content .btn-send {
  background: hsl(242, 29%, 39%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 30px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
#contact-content .btn-send:hover {
  background: hsl(270, 24%, 22%);
  color: #fff;
}
#contact-content .hours-table {
  width: 100%;
  color: #f5f5f5;
  font-size: 0.95rem;
}
#contact-content .hours-table td {
  padding: 4px 0;
}
#contact-content .cta-strip {
  background: hsl(242, 29%, 39%);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  color: #fff;
  margin-top: 48px;
}
#contact-content .cta-strip a {
  background: hsl(218, 45%, 59%);
  color: #1c1a26;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}
#contact-content .cta-strip a:hover {
  background: #fff;
  color: hsl(242, 29%, 39%);
}
@media (max-width: 767px) {
  #contact-content .contact-card, #contact-content .info-block {
    padding: 22px;
  }
}

#services-content {
  background-color: #f8f9fa;
  color: #222;
  font-family: 'Raleway', sans-serif;
  padding: 52px 0;
}
#services-content h1,
#services-content h2,
#services-content h3,
#services-content h4 {
  font-family: 'Inter', sans-serif;
}
#services-content .intro-block {
  max-width: 900px;
  margin: 0 auto 48px auto;
}
#services-content .intro-block h1 {
  color: hsl(242, 29%, 39%);
  font-weight: 700;
  margin-bottom: 20px;
}
#services-content .sub-section {
  margin-bottom: 48px;
}
#services-content .sub-section h2 {
  color: hsl(270, 24%, 22%);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 14px;
  border-left: 4px solid hsl(218, 45%, 59%);
  padding-left: 12px;
}
#services-content .sub-section p {
  line-height: 1.7;
}
#services-content .catalogue-heading {
  text-align: center;
  margin-bottom: 40px;
}
#services-content .catalogue-heading h2 {
  color: hsl(242, 29%, 39%);
  font-weight: 700;
}
#services-content .service-card {
  background: #fff;
  border: 1px solid #e3e3e8;
  border-radius: 8px;
  padding: 28px 20px;
  height: 100%;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#services-content .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(46, 41, 92, 0.18);
  border-color: hsl(218, 45%, 59%);
}
#services-content .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background-color: hsl(242, 29%, 39%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  font-size: 1.7rem;
  transition: background-color 0.25s ease;
}
#services-content .service-card:hover .icon-wrap {
  background-color: hsl(218, 45%, 59%);
}
#services-content .service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: hsl(270, 24%, 22%);
  margin-bottom: 10px;
}
#services-content .service-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #333;
  margin-bottom: 14px;
}
#services-content .price-tag {
  display: inline-block;
  background-color: hsl(218, 45%, 59%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 6px 16px;
  border-radius: 6px;
}
#services-content .terms-box {
  background-color: #fff;
  border-radius: 8px;
  padding: 32px;
  margin-top: 52px;
  border: 1px solid #e3e3e8;
}
#services-content .terms-box h2 {
  color: hsl(242, 29%, 39%);
  font-weight: 700;
  margin-bottom: 18px;
}
#services-content .terms-box ul {
  padding-left: 20px;
}
#services-content .terms-box li {
  margin-bottom: 10px;
  line-height: 1.6;
}
#services-content .cta-box {
  background-color: hsl(270, 24%, 22%);
  color: #fff;
  border-radius: 8px;
  padding: 40px 24px;
  text-align: center;
  margin-top: 52px;
}
#services-content .cta-box h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}
#services-content .cta-box p {
  color: #f0f0f5;
  margin-bottom: 22px;
}
#services-content .cta-box .btn-cta {
  background-color: hsl(218, 45%, 59%);
  color: #fff;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.25s ease;
}
#services-content .cta-box .btn-cta:hover {
  background-color: #4d6fa8;
  color: #fff;
}
@media (max-width: 576px) {
  #services-content .service-card {
    padding: 22px 16px;
  }
}
