/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff; /* white text */
  background: linear-gradient(135deg, #2b0340 0%, #34034f 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 90%;
  max-width: 800px;
  margin: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

header {
  background: linear-gradient(135deg, #00ff6e 0%, #00e676 100%);
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #d60051; /* darkish-pink to red accent color */
}

header h1 {
  color: #2b0340; /* dark purple text */
  font-size: 2.5rem;
}

main {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact-info h2 {
  color: #d60051; /* darkish-pink to red accent color */
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #d60051;
}

.contact-info p {
  margin-bottom: 1rem;
  color: #ccc;
  font-size: 1.1rem;
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-info a {
  color: #00ff6e; /* vibrant green links */
  text-decoration: none;
}

.contact-info a:hover,
.contact-button:hover {
  text-decoration: underline;
  color: #ff006e; /* lighter shade of pink for hover effect */
}

.contact-button {
  display: inline-block;
  background-color: #d60051; /* darkish-pink to red accent color */
  color: #ffffff;
  padding: 10px 20px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.contact-button:hover {
  background-color: #ff006e; /* lighter shade for hover effect */
  color: #2b0340;
}

footer {
  background: #2b0340; /* dark purple background */
  color: #ffffff; /* white text */
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #d60051; /* darkish-pink to red accent color */
}

footer p {
  font-size: 0.8rem;
}
