* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.container {
  display: flex;
  flex: 1;
}
.left-section {
  background-color: #4a9ce2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: #fff;
  text-align: center;
}
.right-section {
  background-color: #f47a7a;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: #fff;
  text-align: center;
}
h1,
h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.qr-code {
  background-color: #fff;
  width: 200px;
  height: 200px;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-code img,
.qr-code picture {
  width: 100%;
  height: 100%;
}
.button {
  display: inline-block;
  background-color: #fff;
  color: #f47a7a;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}
.button:hover {
  background-color: transparent;
  color: #fff;
}
.social-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.5rem;
  gap: 1rem;
}
.insta-link,
.whatsapp-link {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  justify-content: center;
}
.insta-link:hover,
.whatsapp-link:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.insta-icon,
.whatsapp-icon {
  margin-right: 8px;
}
.error-code {
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.return-home {
  margin-top: 2rem;
}
.community-graphic {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 150px;
  pointer-events: none;
}
.logo-image {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .community-graphic {
    display: none;
  }
  .left-section,
  .right-section {
    padding: 3rem 1rem;
  }
  h1,
  h2 {
    font-size: 2rem;
  }
  p {
    font-size: 1rem;
  }
  .qr-code {
    width: 180px;
    height: 180px;
  }
  .social-links {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  h1,
  h2 {
    font-size: 1.8rem;
  }
  .left-section,
  .right-section {
    padding: 2rem 1rem;
  }
  .button {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  .error-code {
    font-size: 4rem;
  }
}
