* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;  /* Dit voorkomt horizontale scroll */
  font-family: 'Helvetica', sans-serif;
  background-color: #1E3B58;
  color: white;
  scroll-behavior: smooth;
}

header {
  background: rgba(0, 0, 0, 0.6); /* 👈 half transparant zwart */
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  backdrop-filter: blur(5px); /* optioneel: mooie blur onder de header */
}
.container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5.5rem;
  padding: 0 1rem;
  position: relative;
}

.logo-large {
  height: 4.8rem;
  object-fit: contain;
  margin-top: 20px;
}

/* Standaard alleen grote logo zichtbaar */
.logo-small {
  display: none;
}
.logo-large {
  display: block;
}

/* Op kleinere schermen (bijv. mobiel): alleen kleine logo zichtbaar */
@media (max-width: 768px) {
  .logo-small {
    display: block;
    transform: scale(0.8); /* ✅ correct way */
  }

  .logo-large {
    display: none;
  }
}


.hamburger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

nav {
  display: flex;
  gap: 3rem;
}

nav a {
  font-size: 1rem;
  letter-spacing: 0.05rem;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-right: 10px;
}

nav a:hover {
  color: #a7a7a7;
}

/* MOBILE STYLES */
@media screen and (max-width: 600px) {
  .hamburger {
    display: block;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }

  nav {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: right;
  
    /* Animatie basis */
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10;
  }
  /* Fallback voor oudere browsers (optioneel) */

  
  
  nav.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
}

/* HERO SECTION */
.hero {
  height: 110vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: url('images/thumbnail.png') no-repeat top center/cover;
  position: relative;
  padding: 0 1rem;
  width: 100%;
  margin-top: -60px; /* 👈 duwt de sectie 40px omhoog */
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(51, 73, 93, 0.1);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
  margin-left: 0.3rem;
  margin-top: 300px;
}

.hero-content h1,
.hero-content p,
.hero-buttons {
  margin-left: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
  margin-top: 140px;
}

.hero-content p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 25rem;
  font-size: 1rem;
  margin-left: 80px;
}

.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 10px 10px 16px rgba(0, 0, 0, 1);
  margin-top: 40px;
}

.btn.white {
  background: white;
  color: #000;
}

.btn.blue {
  background: #00e1e9;
  color: black;
}

.btn:hover {
  opacity: 0.7;
}

/* Responsive Hero Section voor mobiel */
@media (max-width: 768px) {
  .hero {
    height: 100vh; /* optimale hoogte voor mobiel */
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    margin-top: 0; /* Verwijdert negatieve margin */
  }

  .hero-content {
    margin-top: 0;
    margin-left: 0;
    text-align: center; /* tekst gecentreerd op mobiel */
    max-width: 90%; /* tekst neemt volledige breedte minus padding */
  }

  .hero-content h1 {
    font-size: 2rem; /* kleiner op mobiel */
    margin-top: 100px;
    margin-left: 0;
    font-family: 'Roboto Condensed', sans-serif;
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-left: 0;
    margin-bottom: 1.5rem;
    font-family: 'Source Sans Pro', sans-serif;
  }

  .hero-buttons {
    flex-direction: column; /* knoppen onder elkaar */
    gap: 1rem;
    margin-bottom: 10px;
    margin-left: 0;
    align-items: center; /* gecentreerd */
  }

  .btn {
    width: 80%; /* breder op mobiel voor gemakkelijke bediening */
    margin: 0 auto; /* centreren */
    box-shadow: none; /* minder zware schaduw op mobiel */
  }
}










.kenmerken {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 1rem;
  background: #f5f5f5;

}


.kenmerk {
  background: #eafcff;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-align: center;
  width: 320px; /* was 250px */
  height: 360px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.kenmerk-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  
}
.kenmerk:hover {
  transform: translateY(-5px);
}

.kenmerk-bottom1{
  height: 110px;
}
.kenmerk-bottom2{
  height: 110px;
}
.kenmerk-bottom3{
  height: 110px;
}
.kenmerk-bottom3{
  height: 110px;
}
.kenmerk-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.kenmerk-title::before,
.kenmerk-title::after {
  content: "";
  flex: 1;
  height: 2.5px;
  background: #000;
  min-width: 30px;
  max-width: 150px;
  margin-left: -8px;
  margin-right: -8px;

}



.kenmerk-title span {
  font-weight: bold;
  font-size: 1.4rem;
  white-space: nowrap;
  color: #000;
}


.kenmerk p, h4, h3{ 
  color: #000;
}
.kenmerk h3{
  font-family: 'Source Sans Pro', sans-serif;
}

.kenmerk img {
  width: 100px;
  height:100px;
  margin: 1rem 0;
}

.kenmerk h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  word-break: normal;
  white-space: normal;
  font-family: 'Roboto', sans-serif;
}


.kenmerk p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.5;
  word-break: normal;
  white-space: normal;
  padding: 0 0.5rem;
  font-family: 'Roboto', sans-serif;
}



/* Responsive: 2 per rij op tablets */
@media (max-width: 724px) {
  .kenmerk {
    width: calc(50% - 2rem);
  }
}

/* Responsive: 1 per rij op mobiel */
@media (max-width: 700px) {
  .kenmerk {
    width: 100%;
  }
}











.diensten {
  background: #1E3B58;
  width: 100%;
  padding: 4rem 1rem;
  text-align: center;
  overflow: hidden;
}

.diensten h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: white;
}
.diensten p {
  font-size: 1.4rem;
  font-weight: 500;
  color: rgb(255, 255, 255);
}

.dienst p {
  color: black;
}

.dienst h3{
  font-size: 1.4rem;
  font-weight: bolder;
  font-family:'Source Sans Pro', sans-serif ;
}

.dienst-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1300px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.dienst {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.dienst:hover {
  transform: translateY(-5px);
}

.dienst img {
  width: 150px;
  height: 150px;
  margin-bottom: 1.2rem;
}

.btn-diensten {
  background: cyan;
  color: #000;
  padding: 0.7rem 2.3rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.2);
  margin-top: auto;
  transition: background 0.3s ease;
  margin-top: 20px;
}

.btn-diensten:hover {
  background: #01d2da;
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
  .dienst-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .dienst-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dienst {
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .diensten p {
    font-size: 1rem;
  }
}










  .modal-overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 998;
    display: none;
  }

  .modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: black;
    padding: 2rem;
    border-radius: 10px;
    max-width: 700px;
    width: 90%;
    z-index: 999;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }

  .modal-content h2 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #1e3b58;
  }

  .modal-content p {
    line-height: 1.6;
    margin-top: 1rem;
    color: black;
  }

  .modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.2rem;
    background: none;
    border: none;
    cursor: pointer;
  }

  .dienst-wrapper.blur {
    filter: blur(5px);
    pointer-events: none;
  }























.klantbeoordelingen {
  padding: 60px 20px;
  text-align: center;
  background: #f4f4f4;
}

.klantbeoordelingen h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-decoration: none;
  color: black;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 800;
}

.beoordeling {
  display: flex;
  justify-content: center;
}

.swiper-slide {
  width: auto;
}

.beoordeling-content {
  background-color: #1f3f66;
  color: white;
  border-radius: 25px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  height: 100%;
}

.klant-foto {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.quote {
  font-size: 2rem;
  margin-bottom: 15px;
}

.beoordeling-tekst {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
}
.review {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.klant-naam {
  margin-top: 20px;
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
}

/* Swiper styles */
.swiper-button-next,
.swiper-button-prev {
  color: #1f3f66;
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #1f3f66;
}

.swiper-slide {
  opacity: 0.4;
  filter: blur(1px);
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.swiper-slide-active {
  opacity: 1;
  filter: none;
  transform: scale(1);
  z-index: 2;
}



@media (max-width: 992px) {
  .swiper {
    padding: 0 10px;
    overflow: visible;
  }
}
@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  .klantbeoordelingen h2{
    font-size: 1.6rem;
    font-weight: 900;
  }
}






















.contact-form {
  background: #1E3B58;
  color: white;
  padding: 6rem 2rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 2rem;
}
.legend{
  text-align: center;
}
.contact-form p {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

/* FORM CONTAINER GROTER EN CENTREREN */
form {
  background: #15324c;
  max-width: 900px;        /* 👈 iets breder */
  margin: 0 auto;
  padding: 3rem 2rem;
  border: 2px solid #fff;
  border-radius: 12px;
  box-sizing: border-box;
}

fieldset {
  border: none;
  padding: 0;
}

legend {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-align: center;
}

input, select, textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

.form-row {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.form-row input {
  flex: 1;
  min-width: 200px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* 1. Center de verzendknop */
button[type="submit"] {
  background: cyan;
  border: none;
  padding: 1rem 2.5rem;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  border-radius: 6px;
  margin: 2rem auto 0 auto; /* 👈 dit centreert 'm */
  transition: background 0.3s;
  display: block; /* 👈 nodig voor centreren met margin auto */
  font-size: 1rem;

}


button[type="submit"]:hover {
  background: #00b6cc; /* iets donkerder dan cyan */
  color: #352a2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 201, 255, 0.3);
}
.form-checkboxes {
  display: flex;
  flex-direction: column;
  margin-top: 1.7rem;
}

.form-checkboxes label {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: white;
}

.form-checkboxes input[type="checkbox"] {
  accent-color: cyan;
  width: 15px;
  position: relative;
  height: 15px;
  cursor: pointer;
  margin-right: 0.5rem;
  top:9px;
}

.form-checkboxes a {
  color: #00c9ff;
  text-decoration: underline;
}

label {
  flex-wrap: wrap;
}

.form-checkboxes {
  margin-top: 0px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 2px;
}



.form-checkboxes a {
  color: #00c9ff;
  text-decoration: underline;
}


@media (max-width: 768px) {
  .form-checkboxes input[type="checkbox"] {
    transform: scale(0.85);
    top: 6px; /* adjust vertical alignment if needed */
  }

  .form-checkboxes label {
    font-size: 0.75rem; /* optionally make label text smaller too */
  }
}

















.faq {
  background-color: #f2f9fb; /* Lichte achtergrondkleur */
  padding: 4rem 2rem;
  font-family: Arial, sans-serif;
}

.faq .container-3 {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  padding-bottom: 2rem;
  background-color: #f9f9f9; /* Witte achtergrond voor deze sectie */
  margin-top: 2rem;           /* Toevoegen van marge aan de bovenkant van de container */
}

.left-column,
.right-column {
  width: 48%;
}

.left-column h2,
.right-column h2 {
  text-align: center;
  font-size: 2rem;
  color: #1e3b58;
  margin-bottom: 1rem;
  font-weight: bolder;
  font-family: 'Source Sans Pro', sans-serif;
}

.left-column p {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1E3B58;
  text-align: center;
}

.left-column img {
  display: block;           /* Zorgt ervoor dat de afbeelding zich als een block-element gedraagt */
  margin: 0 auto;           /* Centreert de afbeelding horizontaal */
  max-width: 100%;          /* Zorgt ervoor dat de afbeelding niet te groot wordt */
  height: auto;             /* Houdt de verhoudingen van de afbeelding intact */
}


.blockquote {
  font-size: 1.3rem;
  font-style: italic;
  margin: 1.5rem 0;
  color: #00c9ff;
}

.faq .container-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  border-left: 4px solid #1E3B58;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  font-size: 1.5rem;
  color: #1e3b58;
}

.faq-item p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 0.5rem;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: bold;
}

.btn-faq {
  background-color: #35C078;
  color: #fff;
  padding: 0.7rem 2.5rem;
  text-align: center;
  font-weight: bold;
  border-radius: 8px;
  display: block;
  text-decoration: none;
  transition: background 0.3s;
  transition: all 0.3s ease;
  box-shadow: 10px 10px 16px rgba(0, 0, 0, 1);
  margin: 2rem auto;   /* Centreer de button horizontaal */
  max-width: 300px;     /* Zorg ervoor dat de button niet te groot wordt */
  width: 100%;          /* Zorg ervoor dat de button zich uitbreidt tot het maximum */
}

.btn-faq2 {
  background-color: #35C078;
  color: #fff;
  padding: 0.7rem 2.5rem;
  text-align: center;
  font-weight: bold;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  transition: background 0.3s;
  transition: all 0.3s ease;
  box-shadow: 10px 10px 16px rgba(0, 0, 0, 1);
}

.btn-faq:hover,
.btn-faq2:hover {
  background-color: #0d8d4b;
  opacity: 0.9;
}

@media (max-width: 862px) {
  .faq .container-3::before {
    display: none;
  }

  .left-column::after {
    content: "";
    display: block;
    width: 80%;
    height: 4px;
    background-color: #1E3B58;
    border-radius: 4px;
    margin: 2rem auto 0 auto;
  }

  .left-column,
  .right-column {
    width: 100%;
    text-align: left; /* Zorgt dat alles netjes gecentreerd is */
  }

  .left-column h2,
  .left-column p,
  .left-column .btn-faq {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.lees-meer-link {
  font-size: 1rem;
  color: #1E3B58;
  text-decoration: none;
  margin-left: 4px;
}

.lees-meer-link:hover {
  text-decoration: underline;
  color: #00c9ff;
}


















/* Footer Styles */
.footer {
  background-color: #1e3b58;
  color: white;
  padding: 3rem 2rem;
  font-family: Arial, sans-serif;
  position: relative; /* maakt het mogelijk om de footer op een vaste locatie te houden */
  bottom: 0;
  width: 100%;
  margin-top: auto; /* Voorkomt dat de footer zich uitrekt of verschuift */
}
.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  width: 100%;
}


.footer-middle,
.footer-right {
  width: 18%;

}
.footer-left {
  width: 25%;
  margin-left: 50px;
}

.footer-left {
  text-align: left;
}

.footer-left .footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.footer-logo p{
  font-size: 1.5rem;
}
.footer-left .footer-logo img {
  width: 120px; /* Adjust the logo size */
  margin: 1rem auto;
}

.footer-left hr.footer-line {
  border: 0;
  border-top: 1px solid #ffffff;
  margin: 1rem 0;
}

.footer-left .footer-menu h3,
.footer-middle h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: bold;
}

.footer-menu ul,
.footer-business-info ul,
.footer-contact ul {
  list-style-type: none;
  padding: 0;
}

.footer-menu li,
.footer-business-info li,
.footer-contact li {
  margin-bottom: 0.8rem;
}

.footer-line-1 {
  margin-bottom: 15px;
  margin-top: 20px;
}


.footer-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.footer-menu a:hover {
  text-decoration: underline;
}

.footer-contact i {
  margin-right: 0.5rem;
}

.footer-cta h3{
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.4rem;
  font-family: 'Source Sans Pro', sans-serif;
}

.btn-cta {
  background-color: #00F6FF;
  color: rgb(0, 0, 0);
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  display: inline-block;
  margin-top: 1rem;
  box-shadow: 10px 10px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.btn-cta:hover{
  background-color: #00c9ff;
}

.footer-social ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-social a {
  color: #ffffff;
  font-size: 1.5rem;
  text-decoration: none;
}

.footer-social a:hover {
  color: #00c9ff;
}

.footer-bottom {
  position: absolute;
  bottom: 1; /* Zet de footer helemaal aan de onderkant */
  max-width: 100%; /* Zorg ervoor dat het de volledige breedte van de pagina gebruikt */
  text-align: center;
  font-size: 0.8rem;
  padding: 1rem 0;
}

.footer-bottom a {
  color: #00c9ff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-cta-1 {
  margin-top: 1.2rem;
}
.footer-cta-1 h3{
  font-family: 'Source Sans Pro', sans-serif;
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.4rem;
}

/* Adjustments for Small Screen Sizes */
@media (max-width: 1250px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    text-align: center;
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2rem auto;
  }

  .footer-left {
    margin-left: 0; /* 🔧 Fix de verschuiving */
    text-align: center;
  }

  .footer-left .footer-logo {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }

  .footer-left .footer-logo img {
    margin: 0 auto;
  }

  .footer-left hr.footer-line {
    margin: 1rem auto;
    width: 80%;
    border: 0;
    border-top: 1px solid #ffffff;
  }

  .footer-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }

  .footer-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }

  .footer-menu li {
    margin-bottom: 0.5rem;
  }

  .footer-social ul {
    flex-direction: row;
    justify-content: center;
    margin-top: 1rem;
  }

  .footer-cta,
  .footer-cta-1 {
    text-align: center;
  }

  .footer-cta p,
  .footer-left p {
    margin: 0 auto;
  }
}





a[href^="tel:"] {
  color: #ffffff;         /* or your desired color */
  text-decoration: none;
}
