/* CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Variables and Global Styles */
:root {
  --primary-color: #007bff; /* Professional Blue */
  --primary-darker: #0056b3; /* Darker Blue for hovers and sections */
  --secondary-color: #f8f9fa; /* Light grey background */
  --text-color: #333333;
  --heading-color: #2c3e50; /* Dark Slate Blue */
  --white: #ffffff;
  --footer-bg: #2c3e50; /* Dark Slate Blue */
  --font-body: 'Roboto', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
}

body.no-scroll {
  overflow: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Mobile First Typography */
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; text-align: center; }
p { margin-bottom: 1rem; }
a { color: var(--primary-color); text-decoration: none; }

/* Mobile First Layout */
section { 
  padding: 50px 0; 
  scroll-margin-top: 120px; 
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn:hover {
  background-color: var(--primary-darker);
  transform: translateY(-2px);
}

.btn:disabled {
  background-color: #a0a0a0;
  cursor: not-allowed;
  transform: none;
  opacity: 0.7;
}


/* Sticky Top Container */
.sticky-top-container {
  position: sticky;
  top: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  z-index: 1000;
}

/* Affiliate Banner */
.affiliate-banner {
  background-color: #ff8c00; /* Vibrant Orange */
  color: var(--white);
  transition: padding 0.3s ease-in-out;
}

.affiliate-banner .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0; /* Let toggle/content handle padding */
}

/* The collapsible content area */
.affiliate-main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding-top 0.4s ease-in-out, padding-bottom 0.4s ease-in-out;
  padding: 0 20px;
}

.affiliate-banner.expanded .affiliate-main-content {
  max-height: 300px; /* A safe value for the content height */
  padding-bottom: 1rem;
  padding-left: 20px;
  padding-right: 20px;
}

.affiliate-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  padding-top: 1rem; /* Add padding here so it appears with the content */
}

/* The mobile toggle button */
.affiliate-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: transparent;
  border: none;
  color: var(--white);
  padding: 0.75rem 20px;
  cursor: pointer;
  font-family: inherit; /* Inherit font from body */
}

.affiliate-toggle p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}
.affiliate-toggle p strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  transition: transform 0.3s ease-in-out;
}

.affiliate-banner.expanded .chevron {
  transform: rotate(225deg);
}

@keyframes subtle-wrench-turn {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(20deg); }
  20% { transform: rotate(0deg); }
  30% { transform: rotate(20deg); }
  40% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); } /* Long pause */
}

.affiliate-icon {
    width: 2.8rem;
    height: 2.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: subtle-wrench-turn 5s ease-in-out infinite;
    transition: transform 0.2s ease;
}

.affiliate-content:hover .affiliate-icon {
    transform: scale(1.1);
}

.affiliate-text {
  text-align: center;
}

.affiliate-text p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
}

.affiliate-text p strong {
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.affiliate-disclaimer {
  font-size: 0.8rem;
  font-style: italic;
  opacity: 0.9;
  margin: 6px 0 8px 0;
  font-weight: 400;
  line-height: 1.3;
}

.referral-link {
    display: block;
    margin-top: 4px;
    font-size: 1rem;
    color: var(--white);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
    opacity: 0.9;
}

.referral-link:hover {
    opacity: 1;
    text-decoration: none;
}

.affiliate-banner .btn {
  background-color: var(--primary-color);
  flex-shrink: 0; /* Prevent button from shrinking */
}

/* Header */
.header {
  background: var(--white);
  padding: 1rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  z-index: 1002; /* Above affiliate banner */
}

/* Desktop Nav specific styles */
.desktop-nav {
  display: none; /* Hidden on mobile by default */
}

.nav-links a {
  margin: 0 8px;
  font-weight: bold;
  color: var(--text-color);
  transition: color 0.3s ease;
  position: relative; /* Needed for the pseudo-element */
  padding-bottom: 5px; /* Space for the underline */
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a.active {
  color: var(--primary-color);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.desktop-btn {
  display: none; /* Hidden on mobile */
}

/* Mobile Navigation Toggle (Hamburger) */
.mobile-nav-toggle {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  padding: 8px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002; /* Above menu overlay */
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.hamburger-inner {
  display: block;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 100%;
  height: 3px;
  background-color: var(--heading-color);
  border-radius: 4px;
  position: absolute;
  transition: transform 0.25s ease-in-out, background-color 0.25s ease-in-out;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: '';
  display: block;
}

.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

.mobile-nav-toggle.open .hamburger-inner {
  background-color: transparent;
}
.mobile-nav-toggle.open .hamburger-inner::before {
  transform: translateY(8px) rotate(45deg);
}
.mobile-nav-toggle.open .hamburger-inner::after {
  transform: translateY(-8px) rotate(-45deg);
}
.mobile-nav-toggle.open .hamburger-inner::before,
.mobile-nav-toggle.open .hamburger-inner::after {
  background-color: var(--white);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 62, 80, 0.95); /* Dark Slate Blue with transparency */
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu-nav a {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

.mobile-menu-nav a.active {
  color: var(--primary-color);
}
.mobile-menu-nav .btn {
  margin-top: 1rem;
  font-size: 1.2rem;
}


/* Hero Section */
.hero {
  color: var(--white);
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1616046229478-9901c5536a45?q=80&w=2000&auto=format&fit=crop') no-repeat center center/cover;
  z-index: 1;
  animation: kenburns-effect 15s ease-out forwards;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fade-in-up 0.8s ease-out 0.3s forwards;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fade-in-up 0.8s ease-out 0.6s forwards;
}

.hero .btn {
  opacity: 0;
  animation: fade-in-up 0.8s ease-out 0.9s forwards;
}

/* Services Section */
#servizi {
  background-color: var(--secondary-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.service-card .icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* About Section */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  margin-top: 40px;
}

.about-content img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1;
}

/* Intervention Zones Section */
#zone {
  background-color: var(--secondary-color);
}

.zones-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.zones-list-container p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.zones-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  text-align: center;
}

.zones-list li {
  background: var(--white);
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.zones-list li::before {
  content: '📍';
  color: var(--primary-color);
  font-size: 1.2rem;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Testimonials Section */
#testimonianze {
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 8px;
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 35px;
}

.testimonial-quote::before {
  content: '“';
  font-family: 'Times New Roman', Times, serif;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.3;
  position: absolute;
  left: -10px;
  top: -15px;
}

.testimonial-author {
  font-weight: bold;
  color: var(--heading-color);
  text-align: right;
  margin-top: auto;
  margin-bottom: 0;
}

.testimonial-author span {
  font-weight: normal;
  color: var(--text-color);
  font-size: 0.9rem;
}

/* Blog Section */
#blog {
  background-color: var(--secondary-color);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-content h3 {
  font-size: 1.2rem;
}

.blog-card-content p {
  flex-grow: 1;
}

.blog-card-content .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Blog Post Page */
.blog-post-page {
  padding: 40px 0;
}

.blog-post-page .container {
  max-width: 800px; /* Optimal reading width */
}

.blog-post-header {
  text-align: center;
  margin-bottom: 30px;
}
.blog-post-header h1 {
  font-size: 2.2rem;
}

.blog-post-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

.blog-post-content {
  font-size: 1.1rem;
  line-height: 1.7;
}
.blog-post-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.blog-post-content ul {
  list-style-position: inside;
  margin-bottom: 1rem;
  padding-left: 1rem;
}
.blog-post-content li {
  margin-bottom: 0.5rem;
}
.blog-post-content strong {
  color: var(--heading-color);
}
.blog-post-page .btn {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
}


/* Contact Section */
#contatti {
  background-color: var(--secondary-color);
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--heading-color);
  font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--white);
  color: var(--text-color);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a0a0a0;
  opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.contact-form textarea {
  resize: vertical;
}

.form-group-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.form-group-consent input[type="checkbox"] {
  margin-top: 4px;
  width: auto;
}

.form-group-consent label a {
  text-decoration: underline;
}
.form-group-consent label a:hover {
  color: var(--primary-darker);
}

.contact-form .btn {
  align-self: center;
  width: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-status {
  text-align: center;
  margin-top: 1rem;
  font-weight: bold;
  padding: 10px;
  border-radius: 5px;
}

.form-status.success {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}


.contact-alternative {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.phone-link {
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--heading-color);
  display: inline-block;
  margin-top: 0.5rem;
}

.phone-link:hover {
  color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--footer-bg);
  color: #f0f0f0;
  padding: 50px 0 25px;
  text-align: center;
}
.footer a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer a:hover {
  color: var(--white);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-column h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-column p {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #d0d0d0;
}

.footer-column p strong {
    color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: #d0d0d0;
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 0 25px;
}

.footer-bottom {
  text-align: center;
}
.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}


/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--heading-color);
  color: var(--white);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  z-index: 1001;
  text-align: center;
}
.cookie-banner p {
  margin: 0;
}
.cookie-banner a {
  color: var(--white);
  text-decoration: underline;
}

/* Privacy Modal & Siti Amici Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1002;
}

.modal-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-content h2 {
  text-align: left;
}
.modal-content h3 {
  margin-top: 1.5rem;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-color);
}

/* Siti Amici Modal Specific Styles */
.siti-amici-list {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.siti-amici-card {
  border: 1px solid #e0e0e0;
  padding: 1.5rem;
  border-radius: 8px;
  background-color: var(--secondary-color);
  display: flex;
  flex-direction: column;
}

.siti-amici-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.siti-amici-card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.siti-amici-card .btn {
  align-self: flex-start;
  text-transform: none;
  font-size: 0.9rem;
}

/* Animations */
@keyframes kenburns-effect {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive - Tablet and Desktop Overrides */
@media (min-width: 769px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  
  section {
    padding: 60px 0;
    /* Shorter sticky header on desktop */
    scroll-margin-top: 150px; 
  }

  /* UNIFY TOP BAR BUTTONS */
  /* Ensures top bar buttons have a consistent width on desktop for a cleaner, more professional look. */
  .affiliate-banner .btn,
  .header .desktop-btn {
    width: 230px;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .mobile-nav-toggle {
    display: none;
  }

  .desktop-nav {
    display: block;
  }

  .desktop-btn {
    display: inline-block;
  }

  .nav-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 5px;
  }

  /* AFFILIATE BANNER DESKTOP */
  .affiliate-banner {
    padding: 1rem 0; /* Restore original padding */
  }
  .affiliate-banner .container {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    padding: 0 20px; /* Restore container padding */
  }
  /* Hide the toggle on desktop */
  .affiliate-toggle {
    display: none;
  }
  /* Make the content wrapper effectively disappear from layout */
  .affiliate-main-content {
    display: contents;
  }
  /* Now, the original desktop rules should apply correctly to .affiliate-content and the button */
  .affiliate-content {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    min-width: 300px;
    padding-top: 0;
  }
  
  .affiliate-text {
    text-align: left;
  }

  .header .container {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .hero {
    height: 90vh;
  }
  
  .blog-post-header h1 {
    font-size: 2.8rem;
  }

  .about-content {
    flex-direction: row;
    text-align: left;
    gap: 40px;
  }

  .zones-content {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .zones-list-container, .map-container {
    flex: 1;
  }
  
  .zones-list-container p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .form-row {
    flex-direction: row;
  }

  .cookie-banner {
    flex-direction: row;
    gap: 1.5rem;
  }
  .cookie-banner p {
    flex-grow: 1;
  }
  
  .footer {
    text-align: left;
  }
  .footer-content {
    text-align: left;
  }
  
  .footer-column {
    text-align: left;
  }
}