/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.header {
  background-color: #c2185b; /* Dark pink */
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.header h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.header p {
  font-size: 18px;
}

/* Green CTA Button */
.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background-color: #43a047; /* Green */
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #2e7d32;
}

/* Content */
h2 {
  font-size: 24px;
  margin-top: 30px;
  color: #c2185b;
}

h3 {
  font-size: 18px;
  margin-top: 20px;
}

p, li {
  font-size: 16px;
  margin-bottom: 12px;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

code {
  background-color: #eee;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 90%;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: #000;
  color: white;
  padding: 30px 20px 15px;
  text-align: center;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #ccc;
  margin: 0 15px;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy p {
  font-size: 13px;
  color: #888;
}
