.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--orange-primary) 0%, var(--red-accent) 100%);
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-main);
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 15px;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer {
  background: var(--dark);
  padding: 40px 0 25px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer-logo span {
  font-family: var(--font-main);
  font-size: 1.5rem;
  color: var(--orange-primary);
}

.footer-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange-primary);
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.footer-bottom span {
  color: var(--red-accent);
}
