/* Reset + base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fafafa;
  color: #333;
}


.contact-wrapper {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
}
  

.contact-wrapper h1 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 10px;
  margin-top: -50px;
  
}

.contact-section {
  margin-bottom: 40px;
}

.contact-section h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.contact-section p {
  font-size: 16px;
  line-height: 1.6;
}

.cta-link {
  display: inline-block;
  margin-top: 10px;
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}

.cta-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #007BFF;
  transition: width 0.3s;
}

.cta-link:hover::after {
  width: 100%;
}