.footer {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 4em 2em;
  display: flex;
  flex-direction: column;
  gap: 3em;
  font-size: 16px;
  box-sizing: border-box;
}

.get-started-footer {
  text-align: center;
}

.get-started-footer h2 {
  font-size: 1.8rem;
  margin-bottom: 1em;
  color: var(--primary-color);
}

/* CTA Buttons */
.primary-btn,
.secondary-btn {
  padding: 0.75em 1.5em;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  margin: 0.5em;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.primary-btn {
  background-color: var(--text-color);
  color: var(--primary-color);
  border: 1px solid var(--text-color);
}



.secondary-btn {
  background-color: transparent;
  border: 2px solid var(--text-color);
  color: var(--text-color);
}



/* Grid layout for links */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2em;
  margin-top: 2em;
}

/* Quick Links & About */
.quick-links,
.about-us,
.social-links {
  flex: 1 1 250px;
}

.quick-links h4,
.about-us h4,
.social-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1em;
  color: var(--text-color);
}

/* Quick Links List */
.quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links li {
  margin-bottom: 0.75em;
  transition: transform 0.3s ease;
}

.quick-links li a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.quick-links li:hover {
  transform: translateX(5px);
}

.quick-links li:hover a {
  color: var(--text-color);
}

/* About Section */
.about-us p {
  line-height: 1.6;
  color: var(--primary-color);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1em;
  margin-top: 1em;
}

.social-icons a {
  color: var(--primary-color);
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: var(--text-color);
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .get-started-footer h2 {
    font-size: 1.5rem;
  }

  .social-icons {
    justify-content: center;
  }
}
