/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Variables */
  --primary-color: #0d6efd;
  --light-primary-color: #d2e8f5;
  --secondary-color: #0250c0;
  --light-secondary-color: #fcfbf2;
  --highlighter-color: #1e8ecd;
  --cta-color: #ff7f50;
  --section-colors: #ffffff;
  --light-section-colors: #eaeaea;
  --text-color: #202020;
  --dark-text-color: #000000;
  --grey-color: #999999;

  /* Font Variables */
  --font-header: "Comic Sans MS";
  --font-body: "Fredoka One";
  --font-weight-bold: 700;
  --font-size-base: 1rem;
  --font-size-sm: 0.87rem;
  --font-size-lg: 2rem;
  --font-size-xl: 3rem;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text-color);
  line-height: 1.5;
  display: block;
  margin: 0 auto;
  font-family: var(--font-family);
}

/* Typography */
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 0.9375rem;
}
h5 {
  font-size: 0.75rem;
}
h6 {
  font-size: 0.6875rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-header);
  font-weight: var(--font-weight-bold);
  color: var(--dark-text-color);
}

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
  line-height: 1.625;
  font-family: var(--font-body);
}

a {
  text-decoration: none;
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--text-color);
}

li {
  list-style: none;
}

ul,
ol {
  padding-left: 0;
  margin-left: 0;
}

/* Layout & Sections */
section {
  height: 100%;
  width: 100%;
  padding-top: 25px;
  padding-bottom: 25px;
  margin: 0 auto;
}


.iframe-section {
  padding: 0;
  max-width: 100%;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.img-libary-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Utility Classes */
/* Padding */
.p-0 {
  padding: 0;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pl-6 {
  padding-left: 1.5rem;
}
.pr-8 {
  padding-right: 2rem;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Margin */
.m-0 {
  margin: 0;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 2rem;
}
.ml-6 {
  margin-left: 1.5rem;
}
.mx-auto {
  margin: 0 auto;
}
.mr-auto {
  margin-right: auto;
}
.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem;
}
.my-8 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

/* Text Styles */
.text-primary {
  color: var(--dark-text-color);
}
.text-secondary {
  color: var(--light-secondary-color);
}
.text-highlighter {
  color: var(--highlighter-color);
}
.text-uppercase {
  text-transform: uppercase;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-nowrap {
  white-space: nowrap;
}
.text-center {
  text-align: center;
}
.text-sm {
  font-size: var(--font-size-base);
}
.text-large {
  font-size: var(--font-size-lg);
}
.header-large {
  font-size: var(--font-size-xl);
}
.underline {
  text-decoration: underline;
  margin-top: 1rem;
  text-decoration-color: #000;
}

.leading-tight {
  line-height: 1.25;
}
.leading-relaxed {
  line-height: 1.625;
}
.tracking-tight {
  letter-spacing: -0.015em;
}
.tracking-normal {
  letter-spacing: normal;
}
.tracking-wide {
  letter-spacing: 0.05em;
}

/* Color Utilities */
.white {
  color: var(--section-colors);
}

.grey {
  background: var(--grey-color);
}

.bg-section {
  background: var(--primary-color);
}

.bg-light {
  background-color: var(--light-section-colors);
}
.bg-dark {
  background-color: var(--dark-text-color);
  color: var(--light-section-colors);
}
.bg-light-section {
  background-color: var(--light-primary-color);
}
.prm-color {
  color: var(--primary-color);
}
.prm-2-color {
  color: var(--highlighter-color);
}

.second-color {
  color: var(--secondary-color);
}

/* Border & Effects */
.border {
  border: 1px solid #ccc;
}
.rounded {
  border-radius: 0.5rem;
}
.shadow {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Image Styles */
.small-logo {
  max-width: 240px;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: none;
}

.img-full {
  width: 100%;
  height: auto;
  display: block;
}

.img-rounded {
  border-radius: 0.5rem;
}
.img-shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.img-cover {
  object-fit: cover;
  object-position: center;
}
.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img-hover-zoom {
  transition: transform 0.3s ease;
}
.img-hover-zoom:hover {
  transform: scale(1.05);
}

.img-hover-fade:hover {
  opacity: 0.85;
}

.img-box {
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.5rem;
  background-color: #fff;
}

#hero-container {
  position: relative;
  isolation: isolate;
  padding: 5rem 1.5rem;
  color: #fff;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-container {
  /* Your existing container styles */
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Button Styles */
a.primary-btn {
  padding: 16px 24px;
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 20px;
  color: var(--dark-text-color);
  background: var(--cta-color);
  border: 3px solid #000;
  border-radius: 20px 5px 20px 5px;
  box-shadow: 6px 6px 0 #000, 8px 8px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
  position: relative;
}

a.secondary-btn {
  padding: 16px 24px;
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 20px;
  color: var(--section-colors);
  background: var(--primary-color);
  border: 3px solid #000;
  border-radius: 20px 5px 20px 5px;
  box-shadow: 6px 6px 0 #000, 8px 8px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
  position: relative;
}

/* Animation Styles */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Wrapper Styles */
.text-wrapper {
  margin-top: 0.75rem;
  padding-top: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.text-center-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
}

.flex-img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.btn-wrapper {
  text-align: center;
  margin-top: 2rem;
  padding-bottom: 2rem;
  padding-top: 1rem;
}

.header-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0 1rem;
}

ul.flex-list-wrapper {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Box Styles */
.content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.content-box h3::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--dark-text-color);
  margin: 1rem auto 0;
  border-radius: 2px;
}

li.content-list {
  font-weight: 700;
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  line-height: 1.5;
}

h3.content-header {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h4.content-header {
  font-size: 1.3rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.box-center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.box-size-sm {
  max-width: 550px;
}

.box-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Flexbox Styles */
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0.5rem 0;
  flex: 1 1 auto;
}
.flexbox-start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-self: start;
}
.flexbox-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-wrapper-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.flex-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.img-flex-wrapper-flow {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
.vertical-img-wrapper {
  max-width: 650px;
  margin-right: 1.5rem;
  overflow: hidden;
  border-radius: 8px;
}

/* Gallery Text Section */
.image-libary-text {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.image-libary-text h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-text-color);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.image-libary-text h3::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--highlighter-color);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.image-libary-text .faq-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-color);
  margin: 0 auto;
  max-width: 700px;
}

/* Card Styles */
.item-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 550px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-card ul {
  list-style: none;
  padding: 0 20px;
  margin: 0;
  flex-grow: 1;
  font-weight: 700;
}

.item-card ul li.info-text {
  font-size: 1em;
  color: #444;
  padding: 8px 0;
  border-bottom: 1px solid var(--section-colors);
}

.info-title {
  font-size: 2rem;
  color: #024097;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.item-card ul li.info-text:last-child {
  border-bottom: none;
}

.item-card a {
  display: inline-block;
  background-color: transparent;
  color:#024097;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  text-align: right;
  transition: color 0.3s ease, background-color 0.3s ease;
  font-family: var(--font-header);
}

.item-card a:hover {
  color: #0056b3;
  background-color: #f0f8ff;
  text-decoration: underline;
}

.card-wrapper {
  position: relative;
  width: 350px;
  margin: 20px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.img-shadow {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.img-logo-wrapper {
  width: 950px;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  margin: 0 auto;
}

.card-wrapper:hover .img-shadow {
  transform: scale(1.05);
}

.img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 20px;
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  font-family: var(--font-header);
  font-size: 1.5rem;
}

.card-wrapper:hover .img-caption {
  transform: translateY(0);
}

/*Contact Us*/
.about-us-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("FreshStart/immo-renovation-UqNEbyRQ660-unsplash\ \(1\).jpg");
  background-size: cover;
  background-position: center;
  color: var(--highlighter-color);
  text-align: center;
  padding: 100px 20px;
  margin-bottom: 40px;
}

.about-us-hero h1 {
  color: var(--light-secondary-color);
  margin-bottom: 1rem;
  font-size: 2rem;
}
/* Services Section */
.services-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: var(--highlighter-color);
  text-align: center;
  padding: 100px 20px;
  margin-bottom: 40px;
}

.service-text p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-color);
  margin: 0 auto;
  max-width: 700px;
  padding-top: 1rem;
}

.service-text h2 {
  color:#024097;
}

.service-text h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background:var(--dark-text-color);
  margin: 1rem auto 0;
  border-radius: 2px;
}
.text-service {
     font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0 auto;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.service-card {
  background: var(--section-colors);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.service-content ul {
  padding-left: 1rem;
}

.service-content li {
  margin-bottom: 8px;
}

.cta-section {
  text-align: center;
  padding: 60px 20px;
  margin-top: 40px;
}

.cta-section h4 {
  color: var(--section-colors);
  font-size: 2rem;
}

.btn {
  display: inline-block;
  background-color: #e74c3c;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #c0392b;
}

/* Service Wrapper */
.service-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
}

h5.service-title {
  color: var(--dark-text-color);
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  line-height: 1.3;
  letter-spacing: -0.5px;
  text-align: center;
}

h5.service-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--highlighter-color);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.faq-text {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

/* Accordion Styles */
.accordion-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--section-colors);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.detail-header-wrapper {
  margin-bottom: 1rem;
}

.accordion-details {
  margin: 1rem auto;
  padding: 30px;
  max-width: 100%;
  background-color: #f9f9f9;
  border-left: 5px solid var(--primary-color);
  border-radius: 5px;
  font-family: var(--font-family);
  color: var(--dark-text-color);
  line-height: 1.7;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.accordion-summary {
  position: relative;
  padding: 8px 0 8px 1rem;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-header);
  color:var(--secondary-color);
  cursor: pointer;
  list-style: none;
}

.accordion-summary::-webkit-details-marker {
  display: none;
}

.accordion-summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--dark-text-color);
  transition: all 0.3s ease;
}

.accordion-details[open] {
  background-color: #f8fafc;
}

.accordion-details[open] .accordion-summary::after {
  content: "-";
}

.detail-wrapper {
  padding: 1rem 0;
  color: var(--text-color);
  line-height: 1.7;
  animation: fadeIn 0.4s ease-out;
}

.detail-text {
  font-family: var(--font-family);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-icon {
  width: 16px;
  height: 16px;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
  position: sticky;
  top: 0;
  font-family: var(--font-header);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: all 0.4s ease-in-out;
}

.menu-links a {
  color: var(--dark-text-color);
  text-decoration: none;
  font-size: 1.1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.menu-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.menu-links a:hover {
  color: var(--primary-color);
}

.menu-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--dark-text-color);
  padding: 0.5rem;
}

/* Business Info Bar */
.business-info-bar {
  background-color: var(--secondary-color);
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--light-secondary-color);
}

.business-info {
  display: flex;
  gap: 1.5rem;
}

/* Footer Styles */
footer.lgt-sec-bk-color {
  background-color: #f8f9fa;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid #e9ecef;
}

.flexbox-container-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.social-wrapper {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
}

.svg-logo {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.svg-logo:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.1);
}

.social-wrapper a[aria-label="Instagram"] img {
  width: 20px;
  height: 26px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #495057;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.copyright {
  text-align: center;
  color: #6c757d;
  font-size: 0.8rem;
  margin-top: 0.75rem;
}

/* Sidebar Styles */
.sidebar-wrapper-center {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.content-column {
  flex: 1;
  min-width: 300px;
}

.sidebar-column {
  width: 300px;
}

.info-sidebar {
  background: #f8fafc;
  border-left: 1px solid #e2e8f0;
  padding: 25px;
  font-family: var(--font-family);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-top: 20px;
}

.info-section {
  margin-bottom: 30px;
  border-bottom: 1px solid #edf2f7;
  padding-bottom: 20px;
}

.info-section:last-child {
  border-bottom: none;
}

.section-title {
  color: #023273;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-label {
  font-weight: 500;
  color: #4a5568;
  min-width: 70px;
  font-size: 0.9rem;
}

.info-value {
  color: #1a202c;
  font-size: 0.95rem;
  line-height: 1.5;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hours-table tr td {
  padding: 6px 0;
  vertical-align: top;
}

.hours-table tr td:first-child {
  font-weight: 500;
  color: #4a5568;
}

.contact-link {
  color:#023273;
  text-decoration: none;
  display: inline-block;
  margin-top: 5px;
  font-size: 0.9rem;
}

.contact-link:hover {
  text-decoration: underline;
}

.icon {
  font-size: 1.2rem;
  color: #2a2d7c;
}

/* Responsive Utilities */
.hide-mobile {
  display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hide-mobile {
    display: block;
  }

  .business-info-bar {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    text-align: center;
  }

  .business-info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  nav {
    padding: 1rem;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
    order: 2;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background:var(--section-colors);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    max-height: 500px;
    padding: 1rem 0;
  }

  .menu-links {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  .menu-links a {
    display: block;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,.03);
 background:var(--section-colors);
  }

  .menu-links a::after {
    display: none;
  }

  h1.hero-title.white {
    font-size: 1.75rem;
}

  .image-libary-text {
    padding: 0 1rem;
  }

  .image-libary-text h3 {
    font-size: 1.7rem;
    margin-bottom: 1.25rem;
  }

  .image-libary-text h3::after {
    width: 60px;
    height: 3px;
  }

  .image-libary-text .faq-text {
    font-size: 1.05rem;
  }

  .text-large {
    text-align: center;
  }

  .info-title {
    font-size: 1.5rem;
    margin-top: 15px;
  }

  .item-card a {
    font-size: 0.85rem;
  }

  .flex-wrapper-center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0 1rem;
  }

  .flex-wrapper-mobile {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0 1rem;
    flex-direction: column-reverse;
  }

  .flex-img-wrapper {
    flex-wrap: wrap;
  }

  .sidebar-wrapper-center {
    flex-direction: column;
  }

  .sidebar-column {
    width: 100%;
  }

  .header-wrapper {
    max-width: 450px;
  }

  .vertical-img-wrapper {
    flex-direction: column;
    width: 95%;
    max-width: 650px;
    margin: 2rem auto;
  }

  .img-logo-wrapper {
    width: 350px;
    height: 100px;
  }

  .img-caption {
    transform: translateY(0);
    font-size: 2rem;
  }

  .img-mobile {
    max-width: 350px;
    max-height: 250px;
  }

  .accordion-details {
    padding: 20px;
  }

  .accordion-summary {
    font-size: 1rem;
    padding-right: 2rem;
  }

  .social-wrapper {
    margin-top: 0;
  }
}
