/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  line-height: 1.6;
  background: linear-gradient(135deg, red, orange, yellow, green, blue, indigo, violet);
  color: #fff;
}

/* Header with Logo */
header {
  background: transparent;
  text-align: center;
  padding: 1em 0;
}

.logo {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Navigation */
nav {
  background: rgba(0, 0, 0, 0.8);
  padding: 1em;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 1em;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* Hero Section */
.hero {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-align: center;
  padding: 5em 1em;
}

/* Info Sections */
section {
  background: rgba(0, 0, 0, 0.8);
  padding: 2em;
  text-align: center;
  margin: 1em;
  border-radius: 10px;
}

section h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: #fff; /* headings are now plain white */
}

section p,
section ul {
  font-size: 1.2em;
}

section ul {
  list-style-position: inside;
  text-align: center;
  padding: 0;
}

/* Buttons */
.btn {
  background: #ff6600;
  color: #fff;
  padding: 0.5em 1em;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-align: center;
  padding: 1em;
}

footer .site-credit {
  font-size: 0.9em;
  font-style: italic;
  opacity: 0.6;
  margin-top: 5px;
  color: #fff;
}

form input,
form textarea {
  width: 80%;
  padding: 0.75em;
  margin: 0.5em auto;
  display: block;
  font-size: 1em;
  border-radius: 5px;
  border: none;
}

form textarea {
  height: 120px; /* Adjust this to match your design */
  resize: vertical; /* Allows user to stretch if needed */
}

/* Removed rainbow-heading styles entirely */

/* Facebook Link */
.facebook-link {
  background-color: #4267B2; /* Facebook blue */
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
}
.facebook-link:hover {
  background-color: #365899;
}

/* Contact Link Button */
.btn.contact-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFD700; /* bright yellow for visibility */
  color: #000; /* black text for contrast */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin: 5px; /* spacing between buttons */
}

.btn.contact-link:hover {
  background-color: #FFC107; /* slightly darker yellow on hover */
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
}

header {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h2 {
    margin-top: 40px;
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 8px;
}

ul {
    margin-top: 10px;
    line-height: 1.8;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.doc-home-btn {
  text-align: center;
  margin: 20px 0;
}

.doc-home-btn .btn {
  font-size: 1.2em;
  padding: 0.7em 1.5em;
}

.pricing-table {
  width: 100%;
  max-width: 900px;   /* reduces how wide the table can get */
  margin: 20px auto;  /* centres the table */
  border-collapse: collapse;
  font-size: 1rem;
  background: linear-gradient(to right, #080808, #0a0a0a, #070707);
}


.pricing-table th,
.pricing-table td {
  border: 1px solid #080000;
  padding: 10px;
  text-align: center;
  background: rgba(238, 232, 232, 0.4);
}

.pricing-table th {
  font-weight: bold;
  background: rgba(179, 39, 39, 0.6);
}

.pricing-table small {
  font-size: 0.8rem;
  color: #050505;
}

.pricing-title {
  text-align: center;
  color: #f2f2f2;

