:root {
  --primary-color: #7D1C30; /* Set your primary color here */
  --footer-text: #F7E2C9;
}

.main-footer {
  background: var(--primary-color);
  color: var(--footer-text);
  padding: 2.5rem 1rem 1.2rem 1rem;
  font-family: 'Montserrat', sans-serif;
}

.main-footer h3{
  text-align: left;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}


.separator {
    width: 1px;
    background-color: var(--secondary-color);
    margin: 0 1rem;
    align-self: stretch;
    opacity: 0.3;
    border-radius: 1px;
}

.footer-col {
  /* flex: 1 1 200px; */
  min-width: 170px;
  text-align: left;
}

.footer-col h3{
  padding: 0;
  margin-left: -15px;
}
.footer-links ul,
.footer-social ul {
  list-style: circle;
  padding: 0;
  margin: 1rem 0 0 0;
}

.footer-links a,
.footer-social a {
  color: var(--footer-text);
  text-decoration: none;
  display: block;
  margin: 0.3rem 0;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #fff;
}

.footer-logo img {
  max-width: 90px;
  margin: auto auto;
  display: block;
  border-radius: 50%;
  background: #fff;
  padding: 0.5rem;
  transform: translateY(50%);
}

.footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  font-size: 0.95rem;
  color: #F7E2C9;
  margin-top: 1.8rem;
  opacity: 0.8;
  letter-spacing: 0.03em;
}




#whatsapp-logo{
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: 40px;
  left: 93%;
  transition: opacity 0.3s ease;
}

#whatsapp-logo.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Responsive styles */
@media (max-width: 900px) {
.separator {
  height: 2px;
  width: 80%; 
  background-color: white;
  margin: 1rem auto; 
  opacity: 0.3;
  border-radius: 1px;
}

.footer-container{
  padding: 0px 50px 0px 50px;
}

#whatsapp-logo{
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 40px;
  left: 85%;
  transition: opacity 0.3s ease;
}

.footer-logo{
  margin: auto auto;
  display: block;
}

.footer-logo img {
  max-width: 90px;
  margin: auto auto;
  display: block;
  border-radius: 50%;
  background: #fff;
  padding: 0.5rem;
  transform: translateY(0%);
}
}