/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212; /* Dark background */
  color: #ffffff; /* White text */
  line-height: 1.6;
}

header {
  background-color: #0a1a33; /* Dark navy */
  color: white;
  text-align: center;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

header img {
  max-width: 200px;
  height: auto;
  margin-bottom: 10px;
}

h1, h2 {
  color: #ffffff;
}

h1 {
  font-size: 2rem;
}

h2 {
  border-bottom: 2px solid #008cff; /* MeshCore blue */
  padding-bottom: 10px;
  margin-bottom: 20px;
}

main {
  padding: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

section {
  background: #1e1e1e; /* Darker section background */
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  padding: 20px;
  margin-bottom: 30px;
}

p {
  margin-bottom: 15px;
}

a {
  color: #008cff; /* MeshCore blue */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Key Features Section */
.feature-box {
  background-color: #2a2a2a;
  color: white;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.feature-box strong {
  color: #00aaff; /* Lighter blue for emphasis */
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  background: #1e1e1e;
  color: white;
}

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #333;
}
