.footer {
  background: #000;
  color: white;
  padding: 80px 0;
  min-height: 3vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}

.footer-nav a:hover{
  color: purple;
}
.footer-left {
  max-width: 400px;
}

.logo {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.logo img {
  width: 60px;
  height: 60px;
  margin-right: 15px;
}

.logo-text {
  font-size: 32px;
  font-weight: 500;
}

.newsletter p {
  color: #666;
  margin-bottom: 20px;
  font-size: 16px;
}

.email-form {
  display: flex;
  background: #1A1A1A;
  border-radius: 40px;
  max-width: 380px;
  height: 56px;
  align-items: center;
}

.email-form input {
  flex: 1;
  padding: 0 20px;
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  outline: none;
}

.email-form input::placeholder {
  color: #666;
}

.email-form button {
  background: #7B3FE4;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 4px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  margin-bottom: 20px;
  margin-left: 900px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.social-links {
  display: flex;
  margin-bottom: 40px;
}

.social-links a {
  color: #666;
  margin-right: 20px;
  text-decoration: none;
  font-size: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: -30px;
  margin-left: 300px;
}

.info-section h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: normal;
}

.info-section p {
  color: #666;
  line-height: 1.6;
  font-size: 16px;
}



@media (max-width: 768px) {
  .footer {
    padding: 40px 0;
  }

  .footer-content {
    flex-direction: column;
    padding: 0 15px;
  }

  .footer-left {
    max-width: 100%;
  }

  .logo {
    margin-bottom: 80px;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 24px;
  }

  .email-form {
    max-width: 100%;
  }

  .footer-nav {
    margin-top: 30px;
    align-items: flex-start;
  }

  .footer-nav a {
    margin-left: 0;
    font-size: 18px;
    margin-bottom: 15px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-left: 0;
    margin-top: 30px;
  }

  .info-section {
    margin-bottom: 20px;
  }

  .info-section h3 {
    font-size: 16px;
  }

  .info-section p {
    font-size: 14px;
  }

  .social-links {
    justify-content: center;
    margin-bottom: 20px;
  }

  .footer-bottom {
    padding: 0 15px;
    text-align: center;
  }
} 