/* Footer Styles */
.tropicana-footer {
  background-color: #0f3d2f; /* deep Mediterranean green */
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Arial', sans-serif;
}

.tropicana-footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.tropicana-footer a:hover {
  color: #f0c04b; /* warm gold accent */
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-left, .footer-right {
  flex: 1 1 300px;
  margin-bottom: 20px;
}

.footer-left h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-right h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-right ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-left, .footer-right {
    flex: 1 1 100%;
  }
}