.footer-card {
  background: #111;
  color: #fff;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  margin: 20px;
  max-width: calc(100% - 40px);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
}

.footer-center {
  flex: 2;
  margin-left: 40px;
}

.footer-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-right: 10px;
}

.footer-image img {
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-center {
    margin-left: 0;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
    padding-right: 0;
    margin-top: 20px;
    width: 100%;
  }

  .footer-image img {
    max-width: 85%;
    margin: 0 auto;
    display: block;
  }
}

.footer-left, .footer-center {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

.footer-logo img {
  width: 100px;
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  margin-right: 15px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #F2DADA;
}

.footer-center {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  color: red;
  margin-bottom: 15px;
  font-size: 1.1rem;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  display: inline-block;
  background: #e0e0e0;
  color: #111;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  background: #F2DADA;
  color: #111;
}

.demo-btn {
  margin-top: 20px;
  background: #fff;
  color: #111;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 8px;
}

.demo-btn span {
  color: turquoise;
}

.subscribe-form {
  display: flex;
  margin-bottom: 10px;
}

.subscribe-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px 0 0 8px;
}

.subscribe-form button {
  background: turquoise;
  border: none;
  padding: 0 15px;
  color: #111;
  font-weight: bold;
  cursor: pointer;
  border-radius: 0 8px 8px 0;
}

.subscribe-text {
  font-size: 0.85rem;
  color: #aaa;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
}