.page-container {
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.page-content {
  max-width: 800px;
  background: rgba(11, 31, 58, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px;
  color: white;
}
.page-header {
  text-align: center;
  margin-bottom: 40px;
}
.page-header h1 {
  font-size: 42px;
  color: #00a8ff;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(0, 168, 255, 0.5);
}
.page-header .icon {
  font-size: 60px;
  color: #00a8ff;
  margin-bottom: 15px;
}
.contact-methods {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}
.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 25px rgba(0, 168, 255, 0.2);
}
.contact-card i {
  font-size: 35px;
  color: #00a8ff;
  min-width: 50px;
}
.contact-card .info h3 {
  color: #00a8ff;
  margin-bottom: 5px;
  font-size: 18px;
}
.contact-card .info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}
.contact-card a {
  color: #00a8ff;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-card a:hover {
  color: #0056b3;
  text-decoration: underline;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #00a8ff;
  font-size: 28px;
  transition: all 0.3s;
}
.social-links a:hover {
  background: rgba(0, 168, 255, 0.2);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 168, 255, 0.4);
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00a8ff;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 30px;
  transition: color 0.3s;
}
.back-btn:hover {
  color: #0056b3;
}