/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #ddd;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #ff5500;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header and Navigation */
header {
  background-color: #1e1e1e;
  padding-bottom: 10px;
  border-bottom: 3px solid #ff5500;
}

.banner {
  background-color: #121212;
  padding: 15px 0;
  text-align: center;
  border-bottom: 3px solid #ffa040;
}

.logo-banner {
  max-width: 300px;
  height: auto;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  background-color: #1e1e1e;
  margin-top: 5px;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #ff5500;
  font-weight: bold;
  padding: 8px 12px;
  display: block;
}

nav ul li a.active,
nav ul li a:hover {
  background-color: #ffa040;
  color: #121212;
  border-radius: 4px;
}

/* Main content */
main,
section {
  flex: 1;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* Headings */
h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ffa040;
}

h2 {
  color: #ff5500;
  margin-bottom: 10px;
}

/* Pricing Table */
.pricing table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.pricing th,
.pr
