body {
font-family: 'Roboto', sans-serif;
color: #333;
background-color: #fff;
line-height: 1.6;
}

h1 {
font-family: 'Poppins', sans-serif;
}

/* BEGIN MENU CSS */
.nav-container {
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1000;
}

.main-nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

/* Logo */
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-brand:hover .nav-logo {
  transform: scale(1.05);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 25px;
  height: 2px;
  background: #2d3748;
  margin: 3px 0;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: block;
}

.nav-link:hover,
.nav-link.active {
  color: #2d3748;
  background: #c5eae369;
}

.nav-link.active {
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: #f59e0b;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown-link {
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  display: block;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-link:hover {
  color: #2d3748;
  background: #c5eae369;
  border-left-color: #ffd166;
  transform: translateX(5px);
}

.nav-cta {
  background: #ffd166;
  color: #212121;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  white-space: nowrap;
}

@media (max-width: 720px) {
.nav-cta {
display: none;
}
}

.nav-cta:hover {
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  color: #212121;
}

/* Responsive Design */
@media (max-width: 991px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    display: none;
    gap: 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    margin-bottom: 0.25rem;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 1px solid #e2e8f0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin: 0.5rem 0;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }

  .nav-cta {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }

  .nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

@media (max-width: 768px) {
  .main-nav {
    padding: 0.5rem;
  }

  .nav-logo {
    height: 40px;
  }
}
/* END MENU CSS */

/* BEGIN HERO CSS */
.hero-section {
background: #d7f3ee;
padding: 40px 0;
}

.hero-section-content {
padding: 50px 30px;
text-align: left;
max-width: 1180px;
margin: 0 auto;
}

.hero-section-title {
font-size: 2.4rem;
font-weight: 700;
color: #18323a;
margin-bottom: 1rem;
line-height: 1.2;
}

.hero-section-description {
line-height: 1.4;
color: #18323a;
margin-bottom: 1.5rem;
}

.hero-section-button {
display: inline-block;
background: #ffd166;
color: #212121;
font-size: 1.4rem;
font-weight: 500;
padding: 12px 24px;
border-radius: 6px;
text-decoration: none;
transition: background 0.2s ease;
}

.hero-section-button:hover {
background: #ffc145;
}

/* Responsive */
@media (max-width: 721px) {
.hero-section {
padding: 20px 0;
}

.hero-section-title {
font-size: 1.4rem;
}

.hero-section-button {
font-size: 1.6rem;
}
}
/* END HERO CSS */

/* BEGIN INTRO CSS */

.intro-section {
background: #ffffff;
padding: 40px 0 50px 0;
}

@media (max-width: 768px) {
.intro-section {
padding: 40px 0 30px 0;
}
}

.intro-section-content {
max-width: 1180px;
margin: 0 auto;
padding: 0 24px;
text-align: center;
}

@media (max-width: 720px) {
.intro-section-content {
padding: 0 12px;
}
}

.intro-section-title {
font-size: 2.8rem;
font-weight: 700;
color: #18323a;
margin-bottom: 1rem;
line-height: 1.2;
font-family: 'Poppins', sans-serif;
}

.intro-section-description {
line-height: 1.4;
color: #18323a;
margin-bottom: 1.5rem;	
}

/* Responsive */
@media (max-width: 721px) {
.intro-section {
padding: 20px 0;
}

.intro-section-title {
font-size: 1.4rem;
}
}

.intro-section-services-steps {
width: 100%;
padding: 0 40px;
max-width: 1180px;
margin: 0 auto;
}

.intro-section-services-steps-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 15px 30px;
list-style: none;
padding: 0;
margin: 30px 0 0 0;
text-align: center;
}

.intro-section-services-steps-grid li {
background-color: #f7fdfc;
padding: 14px 20px;
border-radius: 8px;
font-size: 1.05rem;
color: #18323a;
font-weight: 500;
transition: all 0.3s ease;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.intro-section-services-steps-grid li:hover {
background-color: #46b3a9;
color: #fff;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
.intro-section-services-steps {
padding: 0 24px;
}
}

@media (max-width: 768px) {
.intro-section-services-steps-grid {
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}
.intro-section-services-steps {
padding: 0 16px;
}
}

@media (max-width: 480px) {
.intro-section-services-steps-grid {
grid-template-columns: 1fr;
}
}
/* END INTRO CSS */

/* BEGIN TRUST SECTION CSS */
.trust-section {
  background-color: #f8f9fa;
  padding: 40px 0;
}

.trust-section h2 {
font-size: 2.2rem;
font-weight: 700;
color: #18323a;
margin-bottom: 1rem;
line-height: 1.2;
font-family: 'Poppins', sans-serif;
}

.trust-section-content {
max-width: 1180px;
margin: 0 auto;
padding: 0 12px;
text-align: center;
}

.trust-section-description {
line-height: 1.4;
color: #18323a;
margin-bottom: 1.5rem;	
}

.trust-section-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
max-width: 1100px;
margin: 0 auto;
}

.trust-section-card {
background-color: #d7f3ee;
border-radius: 12px;
padding: 30px 20px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}

.trust-section-card:hover {
background-color: #c5eae3;
}

.trust-section-card-icon {
font-size: 2rem;
color: #18323a;
margin-bottom: 15px;
}

.trust-section-card h3 {
font-size: 1.2rem;
font-weight: 600;
color: #18323a;
margin-bottom: 10px;
font-family: 'Poppins', sans-serif;
}

.trust-section-card p {
font-size: 0.95rem;
color: #444;
line-height: 1.5;
font-family: 'Roboto Condensed', sans-serif;
margin: 0;
}

@media (max-width: 768px) {
.trust-section {
padding: 50px 0;
}
.trust-section h2 {
font-size: 1.4rem;
}
.trust-section-grid {
gap: 15px;
}
}
/* END TRUST SECTION CSS */


/* BEGIN LOCAL EXPERTISE SECTION CSS */

.local-expertise-section {
background: #ffffff;
padding: 40px 0;	
}

.local-expertise-content {
max-width: 1180px;
margin: 0 auto;
padding: 0 12px;
text-align: center;
}

.local-expertise-title {
font-size: 2.2rem;
font-weight: 700;
color: #18323a;
margin-bottom: 1rem;
line-height: 1.2;
font-family: 'Poppins', sans-serif;	
}

@media (max-width: 720px) {
.local-expertise-title {
font-size: 1.4rem;
}
}

.local-expertise-description {
line-height: 1.4;
color: #18323a;
margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
.local-expertise-section {
margin-left: 12px;
margin-right: 12px;
}
}

.local-expertise-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 25px;
margin-top: 40px;
margin-bottom: 45px;
text-align: left;
}

.local-expertise-item {
display: flex;
align-items: flex-start;
background: #f6fbfb;
border-radius: 12px;
padding: 18px 22px;
max-width: 520px;
flex: 1 1 45%;
transition: all 0.3s ease;
box-shadow: 0 2px 5px rgba(0,0,0,0.04);
border: 1px solid #ccc;
}

.local-expertise-item i {
font-size: 30px;
color: #46b3a9;
margin-right: 16px;
flex-shrink: 0;
margin-top: 4px;
}

.local-expertise-item h5 {
font-family: 'Poppins', sans-serif;
font-weight: 600;
color: #18323a;
margin-bottom: 6px;
}

.local-expertise-item p {
font-size: 1.1rem;
color: #555;
margin: 0;
line-height: 1.3;
}

.local-expertise-item:hover {
background-color: #c5eae3;
color: #fff;
}

.local-expertise-item:hover i {
color: #000;
}

@media (max-width: 768px) {
.local-expertise-grid {
flex-direction: column;
align-items: center;
}

.local-expertise-item {
width: 100%;
}

.local-expertise-item i {
font-size: 26px;
}
}

.container-button {
display: block;
background: #ffd166;
color: #212121;
font-size: 1.4rem;
font-weight: 500;
padding: 12px 24px;
border-radius: 6px;
text-decoration: none;
transition: background 0.2s ease;
width: fit-content;
margin: 0 auto; /* centrează elementul block */
}

.container-button:hover {
background: #ffc145;
}
/* END LOCAL EXPERTISE SECTION CSS */

/* BEGIN CTA BREAK SECTION CSS */
.cta-break-section {
background: #3e917b;
color: white;
padding: 4rem 1rem;
position: relative;
overflow: hidden;
}

.cta-break-section::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-size: cover;
}

.cta-break-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr auto;
gap: 3rem;
align-items: center;
position: relative;
z-index: 2;
}

.cta-text h2 {
font-size: 2.4rem;
margin-bottom: 1rem;
font-weight: 700;
line-height: 1.2;
color: #ffffff;
font-family: 'Poppins', sans-serif;
}

.cta-text p {
font-size: 1.125rem;
opacity: 0.9;
line-height: 1.6;
margin: 0;
color: #ffffff;
}

.cta-actions {
display: flex;
flex-direction: column;
gap: 1rem;
min-width: 280px;
}

.btn-cta-primary {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
background: #ffd166;
color: #000;
padding: 1rem 2rem;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 1.125rem;
transition: all 0.3s ease;
text-align: center;
border: 2px solid #f59e0b;
box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-cta-primary:hover {
background: #ffc145;
border-color: #d97706;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-cta-secondary {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
background: transparent;
color: white;
padding: 0.875rem 2rem;
text-decoration: none;
border-radius: 8px;
font-weight: 500;
font-size: 1rem;
transition: all 0.3s ease;
text-align: center;
border: 2px solid rgba(255, 255, 255, 0.3);
backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
background: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.5);
transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
.cta-break-section {
padding: 3rem 1rem;
}

.cta-break-content {
grid-template-columns: 1fr;
gap: 2rem;
text-align: center;
}

.cta-text h2 {
font-size: 1.4rem;
}

.cta-text p {
font-size: 1rem;
}

.cta-actions {
min-width: auto;
}

.btn-cta-primary,
.btn-cta-secondary {
padding: 0.875rem 1.5rem;
font-size: 1rem;
}
}

@media (max-width: 480px) {
.cta-actions {
flex-direction: column;
}

.cta-text h2 {
font-size: 1.4rem;
}
}
/* END CTA BREAK SECTION CSS */

/* BEGIN STEPS SECTION CSS */

.process-steps-section {
background-color: #f8f9fa;
padding: 40px 0;
}

.process-steps-content {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}

.process-steps-title {
font-size: 2.2rem;
font-weight: 700;
color: #18323a;
margin-bottom: 1rem;
line-height: 1.2;
font-family: 'Poppins', sans-serif;
}

.process-steps-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
margin-bottom: 2.5rem;
}

.process-steps-card {
background: white;
padding: 1.75rem 1.5rem 1rem 1.5rem;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
border: 1px solid #e2e8f0;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-steps-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.process-steps-card h3 {
font-size: 1.125rem;
margin-bottom: 0.75rem;
color: #1a202c;
font-weight: 600;
}

.process-steps-card p {
font-size: 1rem;
color: #4a5568;
line-height: 1.5;
margin: 0;
}

.btn-container-white {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: white;
color: #2d3748;
padding: 0.75rem 1.5rem;
text-decoration: none;
border-radius: 6px;
font-weight: 500;
font-size: 1.4rem;
border: 1px solid #cbd5e0;
transition: all 0.2s ease;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-container-white:hover {
background: #f7fafc;
border-color: #a0aec0;
transform: translateY(-1px);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
.process-steps-section {
padding: 2rem 1rem;
}

.process-steps-title {
font-size: 1.4rem;
margin-bottom: 2rem;
}

.process-steps-grid {
gap: 1rem;
margin-bottom: 2rem;
}

.process-steps-card {
padding: 1.5rem 1.25rem;
}
}

/* END STEPS SECTION CSS */

/* BEGIN SERVICE AREAS SECTION CSS */
.service-areas-section {
background: #ffffff;
padding: 40px 0 0 0;	
}

.service-areas-content {
max-width: 1180px;
margin: 0 auto;
padding: 0 24px;
text-align: center;	
}

.service-areas-title {
font-size: 2.2rem;
font-weight: 700;
color: #18323a;
margin-bottom: 1rem;
line-height: 1.2;
font-family: 'Poppins', sans-serif;
}

@media (max-width: 720px) {
.service-areas-title {
font-size: 1.4rem;
}
}

.service-areas-description {
line-height: 1.4;
color: #18323a;
margin-bottom: 1.5rem;	
}

.service-areas-map {
position: relative;
width: 100%;
margin: 20px 0;
border-radius: 0;
overflow: hidden;
}

.service-areas-map iframe {
width: 100%;
height: 420px;
border: 0;
display: block;
}

@media (max-width: 768px) {
.service-areas-map iframe {
height: 300px;
}
}

.service-areas-cities {
max-width: 1180px;
margin: 0 auto;
padding: 0 12px;	
}

.service-areas-cities-names {
margin-bottom:1.25em;
margin-top: 20px;
}

.service-areas-cities-names ul{
list-style:none;
margin:0;
padding:.6em;
display:grid;
gap:.6em;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.service-areas-cities-names a{
display:block;
text-align:center;
text-decoration:none;
font-size:15px;
padding:.5em .8em;
border-radius:10px;
border:1px solid #e5e7eb;
color:inherit;
position: relative;
padding-left: 2em;
}

.service-areas-cities-names a:hover,
.service-areas-cities-names a:focus{
border-color:#46b3a9;
color:#46b3a9;
outline:0;
}

.service-areas-cities-names a::before{
content:"\f3c5";
font-family:"Font Awesome 5 Free";
font-weight:900;
position:absolute;
left:.7em;
top:50%;
transform:translateY(-50%);
opacity:.85;
color: #46b3a9;
}

@media (min-width: 992px){
.service-areas-cities-names ul{
grid-template-columns: repeat(5, 1fr) !important;
}
}

@media (max-width: 640px){
.service-areas-cities-names ul {
grid-template-columns: repeat(2, 1fr);
}
}
/* END SERVICE AREAS SECTION CSS */

/* BEGIN SERVICE AREAS SECTION CSS */
.cta-footer {
background: linear-gradient(135deg, #d7f3ee, #fff4d1);
border-block: 2px solid #ffe7a3;
padding: 50px 0;
}

.cta-footer-content {
max-width: 1180px;
margin: 0 auto;
padding: 0 12px;
text-align: center;	
}

.cta-footer-title {
font-size: 2.2rem;
font-weight: 700;
color: #18323a;
margin-bottom: 1rem;
line-height: 1.2;
font-family: 'Poppins', sans-serif;	
}

@media (max-width: 720px) {
.cta-footer-title {
font-size: 1.4rem;
}
.cta-footer-content p br {
display: none;
}
}

.cta-footer-benefit {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
text-align: center;
padding: 0;
margin: 0 auto 20px auto;
}

.cta-footer-benefit li .fa-solid {
padding-right: 5px;
color: #184fa7;
}

.cta-footer-benefit li {
display: flex;
align-items: center;
justify-content: center;
font-size: 1.05rem;
color: #333;
}

/* On mobile, return to normal stacked layout */
@media (max-width: 768px) {
.cta-footer-benefit {
display: block;
}
.cta-footer-benefit li {
margin-bottom: 10px;
}
}
/* END SERVICE AREAS SECTION CSS */

/* BEGIN CONTACT SECTION CSS */
#contact-info {
text-align: center;
background: #f8f9fa;
padding: 40px 0;
}

#contact-info h2 {
font-size: 2.2rem;
font-family: 'Poppins', sans-serif;
font-weight: 700;
color: #18323a;
margin-bottom: 15px;
line-height: 1.2;
}

@media (max-width: 720px) {
#contact-info h2 {
font-size: 1.4rem;
}
}

#contact-info .contact-intro {
color: #555;
font-size: 1.05rem;
margin-bottom: 30px !important;
max-width: 750px;
margin-left: auto;
margin-right: auto;
line-height: 1.5;
}

.contact-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 25px;
max-width: 1000px;
margin: 0 auto;
}

.contact-item {
background: #fff4d1;
border: 1px solid #e3e8e6;
box-shadow: 0 3px 10px rgba(0,0,0,0.05);
border-radius: 12px;
padding: 30px 25px;
flex: 1 1 280px;
max-width: 320px;
transition: all 0.3s ease;
}

.contact-item:hover {
background: #ebf7ff;
}

.contact-item i {
font-size: 2rem;
color: #184fa7;
margin-bottom: 15px;
}

.contact-item .btn-hero i {
font-size: 22px;
color: #fff;
}

.contact-item h3 {
font-weight: 600;
color: #18323a;
margin-bottom: 10px;
}

.contact-item p,
.contact-item li {
color: #555;
font-size: 0.90rem;
margin-bottom: 6px;
line-height: 1.3;
}

.contact-item ul {
list-style: none;
padding: 0;
margin: 0;
}

.contact-item .highlight {
font-weight: 700;
color: #204b9f;
font-size: 1.1rem;
}

.contact-btn:hover {
background: #ffca3a;
}

/* Mobile */
@media (max-width: 768px) {
.contact-grid {
flex-direction: column;
align-items: center;
}

.contact-item {
width: 100%;
}
}

.btn-contact {
display: inline-block;
background: #ffd166;
color: #212121;
font-size: 1.4rem;
font-weight: 500;
padding: 12px 24px;
border-radius: 25px;
text-decoration: none;
transition: background 0.2s ease;
}

.btn-contact:hover {
background: #ffc145;
}

/* Responsive */
@media (max-width: 721px) {
.btn-contact {
font-size: 1.2rem;
}
}
/* END CONTACT SECTION CSS */

/* BEGIN SERVICE AREAS SECTION CSS */
.footer-widgets {
background: #2d3748;
color: white;
padding: 20px 20px 10px 20px;
border-top: 4px solid #3e917b;
}

.footer-widgets-container {
max-width: 1180px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}

.footer-widget h4 {
color: #ffd166;
font-size: 1.125rem;
margin-bottom: 1.25rem;
font-weight: 600;
position: relative;
padding-bottom: 0.5rem;
}

.footer-widget h4::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 2px;
background: #ffd166;
}

.footer-widget ul {
list-style: none;
padding: 0;
margin: 0;
}

.footer-widget ul li {
margin-bottom: 0.5rem;
}

.footer-widget ul li a {
color: #cbd5e0;
text-decoration: none;
font-size: 0.875rem;
transition: all 0.3s ease;
padding: 0;
display: block;
}

.footer-widget ul li a:hover {
color: #f59e0b;
transform: translateX(5px);
}

.contact-info {
color: #cbd5e0;
font-size: 0.875rem;
line-height: 1.6;
}

.contact-info p {
margin-bottom: 0.75rem;
display: flex;
align-items: flex-start;
gap: 0.5rem;
}

.contact-info a {
color: #cbd5e0;
text-decoration: none;
transition: color 0.3s ease;
}

.contact-info a:hover {
color: #f59e0b;
}
/* END SERVICE AREAS SECTION CSS */

/* BEGIN FOOTER SECTION CSS */

.footer-bar-section {
background: #1a202c;
color: #a0aec0;
padding: 1.5rem 1rem;
border-top: 1px solid #2d3748;
}

.footer-bar-content {
font-size: 0.75rem;
line-height: 1.5;
margin-bottom: 1rem;
text-align: center;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
}

.footer-bar-copyright {
font-size: 0.75rem;
text-align: center;
margin: 0;
}

.footer-bar-copyright a {
color: #cbd5e0;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-bar-copyright a:hover {
color: #f59e0b;
}

/* Responsive Design */
@media (max-width: 768px) {
.footer-widgets {
padding: 2rem 1rem;
}

.footer-widgets-container {
grid-template-columns: 1fr;
gap: 1.5rem;
text-align: center;
}

.footer-widget h4::after {
left: 50%;
transform: translateX(-50%);
}

.contact-info p {
justify-content: center;
}
}

@media (max-width: 480px) {
.footer-widgets {
padding: 1.5rem 1rem;
}

.footer-bar-section {
padding: 1rem;
}

.footer-bar-content {
font-size: 0.7rem;
}
}
/* END FOOTER SECTION CSS */