/* General Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #f5f7fa, #d9e4f5);
  color: #333;
}

/* Header */
.header {
  background: #c8102e;
  color: white;
  padding: 20px;
  text-align: center;
}
.header .logo img {
  width: 60px;
  vertical-align: middle;
}
.header h1 {
  display: inline-block;
  margin-left: 10px;
  font-size: 22px;
}

/* Contact Section */
.contact-section {
  padding: 40px;
  text-align: center;
}
.contact-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #c8102e;
}
.contact-card {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: left;
}
.contact-card p {
  margin: 10px 0;
  line-height: 1.6;
}
.contact-card a {
  color: #c8102e;
  text-decoration: none;
}
.contact-card a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  margin-top: 40px;
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}
