body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

/* General Styles for Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px !important;
  background-color: #018749; /* Optional background color */
  border-bottom: 1px solid #ccc; /* Optional border */
}

/* General Styles for the Navbar */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #f8f8f8; /* Adjust background color */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

/* Logo Section */
nav .logo img {
  height: 50px; /* Adjust logo size */
}

/* Middle Links Section */
nav .nav-links {
  flex: 1; /* Allows links to occupy available space */
  text-align: center; /* Centers the links horizontally */
}

nav .nav-links a {
  margin: 0 15px; /* Adds spacing between links */
  text-decoration: none;
  color:#018749; /* Adjust link color */
  font-weight: bold;
  font-size: 16px;
}

nav .nav-links a:hover {
  color: #018749; /* Hover effect */
  text-decoration: underline;
}

/* Auth Links (Right Side) */
nav .auth-links {
  white-space: nowrap; /* Prevents wrapping of login/signup */
}

nav .auth-links a {
  text-decoration: none;
  color: #018749; /* Adjust link color */
  font-weight: bold;
  margin-left: 10px;
}

nav .auth-links a:hover {
  text-decoration: underline;
  color: #018749; /* Hover effect */
}

/* --- Media Queries for Mobile Devices --- */

/* Mobile view (max width 768px) */
@media (max-width: 768px) {
  header {
    flex-direction: column;  /* Stack header items vertically */
    padding: 15px 10px;
  }

  nav {
    flex-direction: column;  /* Stack navbar items vertically */
    align-items: center;
    padding: 10px;
  }

  /* Adjust logo size on mobile */
  nav .logo img {
    height: 40px; /* Make the logo smaller */
    margin-bottom: 10px; /* Space between logo and links */
  }

  /* Center the links on mobile */
  nav .nav-links {
    display: flex;
    flex-direction: column;  /* Stack links vertically */
    align-items: center;     /* Center the links */
    margin-top: 10px;
  }

  nav .nav-links a {
    margin: 5px 0;  /* Add vertical space between links */
    font-size: 14px; /* Adjust font size for mobile */
  }

  /* Auth links at the bottom */
  nav .auth-links {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  nav .auth-links a {
    margin-left: 0;
    margin-right: 15px; /* Add spacing between auth links */
  }

  /* Optional: Stack auth links vertically on smaller phones */
  @media (max-width: 480px) {
    nav .auth-links {
      flex-direction: column; /* Stack auth links vertically */
      margin-top: 10px;
    }

    nav .auth-links a {
      margin-top: 5px; /* Vertical space between auth links */
    }
  }
}





.hero {
  padding: 10px 10px;
  text-align: center;
  background: linear-gradient(to right, #f0f0f0, #ffffff);
  animation: slide-in 1s ease-out;
}

@keyframes slide-in {
  from {
      transform: translateX(-100%);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}
.fixed-button {
  position: fixed;
  left: 5px;
  top: 120px;
  z-index: 1000;
  animation: slide-in 2s ease-out;
}
.fixed-button button {
  width: 200px;
  height: 50px;
  background-color:  #018749;
  color: rgb(17, 16, 16);
  border: none;
  padding: 10px 10px;
  border-radius: 5px;
}
.fixed-button button:hover {
  background-color: #018749;
}

@keyframes slide-in {
  0% {
      transform: translateX(-100%);
      opacity: 0;
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}
.paragraph1 {
  width: 92.5%; /* Adjust width as per requirement */
  margin: 0 auto; /* Centering the container */
  padding: 50px;
  background-image: url('bg122.jpg'); /* Replace with your own background image */
  background-size: cover; /* Ensure the background image covers the entire container */
  background-position: center; /* Center the background image */
  background-repeat: no-repeat;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center; /* Ensures the text is centered */
  font-size: 18px;
  line-height: 1.5;
  color: white; /* White text color for contrast */
  animation: slideIn 4s ease-out forwards; /* Apply animation */
}

/* Keyframes for left-to-right animation */
@keyframes slideIn {
  0% {
    transform: translateX(-100%); /* Start off the screen to the left */
  }
  100% {
    transform: translateX(0); /* End at normal position */
  }
}

/* Adjust paragraph text styling */
.paragraph1 p {
  margin: 0;
}

/* Make the text more readable on the background */
.paragraph1 {
  position: relative;
}

.paragraph1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay */
  border-radius: 10px;
  z-index: 1; /* Overlay on top of the background but under the text */
}

.paragraph1 p {
  position: relative;
  z-index: 2; /* Ensure the text is on top of the overlay */
}

/* Responsive Design for tablets and mobile phones (max-width: 1024px) */
@media (max-width: 1024px) {
  .paragraph1 {
    width: 95%; /* Make container wider on tablet-sized screens */
    padding: 40px; /* Adjust padding for better fit */
    font-size: 16px; /* Adjust text size for better readability */
  }
}

/* Responsive Design for mobile screens (max-width: 768px) */
@media (max-width: 768px) {
  .paragraph1 {
    width: 90%; /* Adjust container width for mobile */
    padding: 30px; /* Reduce padding for mobile devices */
    font-size: 14px; /* Reduce font size for mobile readability */
  }

  .paragraph1::before {
    background-color: rgba(0, 0, 0, 0.6); /* Darker overlay for mobile */
  }
}

/* Mobile First - Specific adjustment for smaller devices (max-width: 480px) */
@media (max-width: 480px) {
  .paragraph1 {
    width: 100%; /* Ensure the paragraph takes up the entire width */
    padding: 20px; /* Reduce padding even further for very small screens */
    font-size: 12px; /* Reduce font size for smaller devices */
  }

  .paragraph1::before {
    background-color: rgba(0, 0, 0, 0.7); /* Darker overlay for smaller screens */
  }
}


 
  
  .service-section{
    text-align: left;
    
    text-size-adjust: 30px;
    background-color: #f1f7f1;
     padding: 40px;
     min-width: 100%;
     background-color: #f9f9f9;
      color: rgb(23, 21, 21);
  
  }
 
  .gallery-container {
    text-align: center;
padding: 5px;
  }
   
  .image-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
   
  .image-grid img {
    width: 150px;
    height: 150px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
   
  .image-grid img:hover {
    transform: scale(1.1);
  }
   
  /* Modal styles */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease;
  }
   
  .modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    animation: scaleIn 0.5s ease;
  }
   
  .modal-content img {
    width: 300px;
    height: 300px;
  }
   
  .modal-content p {
    margin-top: 15px;
    font-size: 18px;
    color: #111010;
  }
   
  .close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
  }
   
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
   
  @keyframes scaleIn {
    from {
      transform: scale(0.8);
    }
    to {
      transform: scale(1);
    }
  }
  .container1 ,.container,.container3,.container4{
    display: flex;
    flex-direction: column;
   color: #0c0b0b;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
  }
  
  /* Section Styles */
  .section {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .left {
    flex-direction: row;
  }
  
  .right {
    flex-direction: row-reverse;
  }
  
  .image {
    width: 250px;
    height: auto;
    gap: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.1000s ease-in-out;
  }
  
  .description,.p{
    color: #333;
    max-width: 500px;
      transform: translateX(10px); /* Start off-screen */
      transition: all 0.1000s ease-in-out; 
  }
  
  
  
  .description h2 {
    color: #0e0d0d;
    margin-bottom: 10px;
    transform: translateX(10px); /* Start off-screen */
    transition: all 0.1000s ease-in-out; 
  }
  
  
  /* Animation Styles */
  .animate-left {
    animation: slideInLeft 1s forwards;
  }
  
  .animate-left {
    animation: slideInRight 1s forwards;
  }
  
  /* Keyframes */
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(300px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(300px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .section {
      flex-direction: column;
    }
    .image {
      width: 100%;
    }
  }
  .description p {
    color: #1a1919;
    transform: translateX(20px); /* Start off-screen */
    transition: all 0.1000s ease-in-out; 
  }
  
  
  
  /* Animation Styles */
  .animate-left {
    animation: slideInLeft 1s forwards;
  }
  
  .animate-left {
    animation: slideInRight 1s forwards;
  }
  
  /* Keyframes */
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(110px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(200px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .section {
      flex-direction: column;
    }
    .image {
      width: 100%;
    }
  }
  
  .homepage-container, .image-page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
  }
  
  .image-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .image-link {
    display: inline-block;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    transition: transform 0.3s ease-in-out;
  }
  
  .image-link:hover {
    transform: scale(1.05); /* Hover effect */
  }
  
  .image {
    width: 200px;
    height: auto;
    border-radius: 8px;
  }
  
  .image-container {
    max-width: 600px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.6s ease-in, transform 0.6s ease-in;
  }
  
  .image-page-container:target .image-container {
    opacity: 1;
    transform: translateY(0);
  }
  
  .description {
    padding: 20px;
  }
  
  .description h2 {
    font-size: 24px;
    color: #0c0c0c;
    margin-bottom: 10px;
  }
  
  .description p {
    font-size: 16px;
    color: #1f1e1e;
  }
  
  h1 {
    text-align: center;
    font-size: 2rem;
    color: #0c0b0b;
  }
  
  .gallery-section{
    text-align: center;
   background-color: #dce1dc;
 min-width: 100%;
    background-color: #f9f9f9;
     color: rgb(23, 21, 21);
     transition: transform 0.3s ease;
  
  }
  
  .zoom-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: zoom-in;
  }
  
  .zoom-overlay img {
    max-width: 90%;
    max-height: 90%;
    transition: transform 0.3s ease;
  }
  
  .zoom-overlay img.zoomed {
    transform: scale(1.2);
  }
  /* General Styles */
.quote-wrapper {
  padding: 20px;
  font-family: Arial, sans-serif;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

.testimonial-container {
  background-image: url('bg33.jpg');
  background-repeat: no-repeat;
    background-size: cover;
  position: relative;
  width: 100%;
  
  margin: 0 auto;
  overflow: hidden; /* Hide content outside the container */
}

/* Slides Container */
.carousel .slides {
  display: flex;
  animation: scroll-left-right 40s infinite linear; /* Animation for scrolling */
}

.card {
  flex: 0 0 33.33%; /* Each card takes 1/3 of the visible area */
  box-sizing: border-box;
  padding: 40px;
  background: #f9f9f9;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Blockquote Styling */
blockquote {
  font-style: italic;
  color: #242323;
  margin:0px 10px;
}

.author {
  font-weight: bold;
  color: #018749;
}

/* Keyframes for Animation */
@keyframes scroll-left-right {
  0% {
    transform: translateX(0); /* Start at the first set of cards */
  }
  25% {
    transform: translateX(-100%); /* Move to the next set of cards */
  }
  50% {
    transform: translateX(-100%); /* Pause */
  }
  75% {
    transform: translateX(0); /* Move back to the first set */
  }
  100% {
    transform: translateX(0); /* Complete loop */
  }
}

  
  .contact-form-container {
    margin-top: 50px;
    width: 500px;
    height: 500px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  #contact-us1 h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #018749;
    font-weight: bold;
    }
  /* Contact Form */
  .contact-form h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
    text-align: center;
  }
  
  .contact-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
  }
  h2{
    text-align: center;
    }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  .contact-form textarea {
    resize: vertical;
    height: 60px;
  }
  
  .contact-form button {
    background-color:#018749;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
  }
  
  .contact-form button:hover {
    background-color:#018749;
  }
  
  /* Enquiry Section */
  #enquiry {
    margin-top: 50px;
    padding: 10px;
    background-color: #fff;
   
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 400%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  #enquiry h2 {
    margin-top: 0;
    color: #018749;
    font-weight: bold;
  }
  .contact-us {
    display: flex;
    flex-direction:inherit; /* Reverse the order of items */
    justify-content: space-between;
    
    color: #131212;
    padding: 20px;
    font-family: Arial, sans-serif;
  }
   
  .office-address {
    width: 50%;
    margin-left: 20px; /* Add space between the sections */
  }
   
  .office-address h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
   
  .branch h3,
  .general-enquiry h3 {
    font-size: 18px;
    margin-top: 10px;
   
  }
   
  .enquiry-form {
    width: 40%;
    margin-right: 20px; /* Add space between the sections */
    display: flex;
    flex-direction: column;
  }
   
  .enquiry-form h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
   
  .enquiry-form form {
    display: flex;
    flex-direction: column;
  }
   
  .enquiry-form input,
  .enquiry-form textarea {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
   
  .enquiry-form button {
    background-color: rgb(229, 240, 229);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
   
  .enquiry-form button:hover {
    background-color: rgb(245, 249, 245);
  }
  contact-us {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    font-family: Arial, sans-serif;
  }
   
  .office-address {
    width: 50%;
  }
   
  .office-address h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
   
  .branch h3,
  .general-enquiry h3 {
    font-size: 18px;
    margin-top: 10px;
  }
   
  .enquiry-form {
    width: 40%;
    display: flex;
    flex-direction: column;
  }
  h2{
  text-align: center;
  color: #018749;
    font-weight: bold;
  }
   
  .enquiry-form h3 {text-align: center;
  }
   
  .enquiry-form form {
    display: flex;
    flex-direction: column;
  }
   
  .enquiry-form input,
  .enquiry-form textarea {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
   
  .enquiry-form button {
    background-color: #018749;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
   
  .enquiry-form button:hover {
    background-color: #018749;
  }
  /* Container for the contact popup */
  .contact-popup {
    position: fixed;
    right: 20px; /* Distance from the right edge */
    bottom: 20px; /* Distance from the bottom edge */
    z-index: 1000;
  }
  
  /* Headphone icon styles */
  .headphone-popup {
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Circular shape */
    background-color: #018749;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }
  
  /* Style for the image inside the headphone button */
  .headphone-popup img {
    width: 30px; /* Adjust as needed */
    height: 30px;
  }
  
  /* Hidden checkbox */
  .popup-toggle {
    display: none;
  }
  
  /* Mini popup box styles */
  .mini-popup-box {
    position: absolute;
    bottom: 70px; /* Space above the headphone icon */
    right: 50px;
    background: #ffffff;
    border: 1px solid #018749;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    width: 265px;
    padding: 10px;
    display: none; /* Initially hidden */
  }
  .mini-popup-box p{
    gap: 4px;
  }
  
  /* Display the popup when the checkbox is checked */
  .popup-toggle:checked + .headphone-popup + .mini-popup-box {
    display: block;
  }
  
  .mini-popup-box h3 {
    margin-top: 0;
  }  
  
  .whatsapp-mini-logo {
    width: 60px;  /* Set the size of the mini WhatsApp logo */
    height: 60px;
    border-radius: 40%;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);  /* Optional shadow for effect */
    cursor: pointer;
    transition: transform 0.3s ease;  /* Smooth hover effect */
  }
  
  .whatsapp-mini-logo:hover {
    transform: scale(1.1);  /* Slight zoom effect on hover */
  }
  
  /* Close button style (positioned top-right) */
  .close-button {
    position: absolute;
    top: 10px; /* 10px from the top */
    right: 10px; /* 10px from the right */
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    background-color: transparent;
    color: #018749;
    border: none;
  }
  
  /* Change color when hovering over the close button */
  .close-button:hover {
    color: #016639;
  } 
  .headphone-popup {
    margin-top: 10px;
  }
  
  .headphone-button img {
    width: 60px;
    height: 60px; /* Ensure the height matches the width */
    background-color: #dce1dc;
    border-radius: 50%; /* Makes the image circular */
    transition: transform 0.3s;
    border: 2px solid #018749; /* Optional: Add a border with WhatsApp's theme color */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
  
  .headphone-button img:hover {
    transform: scale(1.1);
  }
  
  
  
  
  /* Animations */
  @keyframes slide-left {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  /* Contact Info */
  .contact-popup {
    position: fixed;
    bottom: 10px;
    right: 30px;
    padding: 10px;
   border-radius: 5px;
    text-align: center;
  }
  
  .contact-popup h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
   
  }
  
  
  
  /* Animations */
  @keyframes slide-right {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  .animated-slide-right {
    animation: slide-right 1s ease-in-out forwards;
  }
  
  .animated-slide-right-delay {
    animation: slide-right 2.5s ease-in-out forwards;
  }
  /* App.css */
  @keyframes slide-right {
    from {
      transform: translateX(-200%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
 /* Footer container with flex layout */
/* Default styles for larger screens */
.footer-container {
  display: flex;
  flex-direction: column;  /* Stack items vertically */
  align-items: flex-start; /* Align items to the left */
  margin: 0;
  padding: 20px;
}

.footer-column {
  padding: 15px;
  margin: 10px;
}

.footer-contact {
  display: flex;
  flex-direction: column;  /* Stack address and contact information */
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-contact h3 {
  margin-bottom: 10px;
  color: #333;
}

.footer-contact p {
  margin: 5px 0;
  color: #555;
}

.footer-contact a {
  color: #018749;  /* Green link color */
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Map container styles */
.map {
  width: 100%;
  height: 300px;  /* Set the height of the map */
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive design for tablet and below (max-width: 1024px) */
@media (max-width: 1024px) {
  .footer-container {
    padding: 15px;
  }

  .footer-column {
    padding: 10px;
    margin: 5px 0;
  }

  .footer-contact {
    margin-bottom: 15px;
  }

  .map {
    height: 250px;  /* Slightly reduce the map height on tablet-sized screens */
  }
}

/* Mobile-friendly adjustments (max-width: 768px) */
@media (max-width: 768px) {
  .footer-container {
    padding: 10px;  /* Reduce padding for smaller screens */
  }

  .footer-contact {
    margin-bottom: 15px;
  }

  .footer-contact h3 {
    font-size: 18px;  /* Slightly smaller font for heading */
  }

  .footer-contact p {
    font-size: 14px;  /* Adjust text size for better readability on smaller screens */
  }

  .map {
    height: 200px;  /* Reduce map height for smaller screens */
  }
}

/* Adjustments for very small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
  .footer-container {
    padding: 8px;  /* Reduce padding even further for small screens */
  }

  .footer-contact h3 {
    font-size: 16px;  /* Make headings smaller for very small screens */
  }

  .footer-contact p {
    font-size: 12px;  /* Reduce text size for better legibility */
  }

  .map {
    height: 180px;  /* Reduce map height more for small mobile screens */
  }
}

.privacy-policy {
  text-align: center; /* Center the content inside the div */
  margin-top: 20px;    /* Add some margin to separate it from other content */
}

.privacy-policy p {
  margin: 0;           /* Remove any margin from the paragraph */
  color: #333;         /* Set the text color of the paragraph (default gray) */
  font-size: 14px;     /* Adjust font size if needed */
}

.privacy-link {
  color: #018749;      /* Set the "Privacy Policy" link color to green */
  text-decoration: none; /* Remove underline */
}

.privacy-link:hover {
  text-decoration: underline; /* Add underline on hover for the link */
}
