﻿.footer-section {
      width: 100%;
      background-color: var(--background-color-first);
      padding: 2.5rem 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0rem 1rem 3rem 1rem;
  border-bottom: 1px solid #ccc;
}

.footer-heading {
      color: var(--primary-color);
      font-size: 2.5rem;
	  line-height: 1.5;
      margin-bottom: 2rem;
      text-align: center;
    }

.footer-address {
	text-align: center;
	font-style: normal;
}

.footer-address p {
	font-size: 1.125rem;
	line-height: 1.5;
	margin: 1rem 0;
}	

.footer-contact-link {
	text-decoration: none;
	color: var(--secondary-color);
}

.footer-referral {
	text-align: center;
	margin: 2rem auto;
}

.footer-referral p {
	font-size: 0.875rem;
	line-height: 1.5;
	margin: 1rem 0;
}

.footer-scroll {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    background-color: var(--secondary-color);
    padding: 0.875rem;
    right: 2rem;
    bottom: 2rem;
    position: fixed;
    border-radius: 3rem;
    transition: all 0.3s;
	z-index: 999;
    transition: transform 0.3s ease;
}

.footer-scroll:hover {
      transform: scale(1.1);
}