* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1920&q=80")
      center/cover;
  padding: 20px;
}

.content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #ffd700;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.canadian-message {
  margin: 30px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.canadian-message p {
  margin-bottom: 0;
  color: #ffd700;
  font-weight: 500;
}

.social-links {
  margin-top: 30px;
}

.social-link {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }

  .content {
    padding: 30px 15px;
  }

  .canadian-message {
    padding: 15px;
  }

  .canadian-message p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
