/* frontend/styles/index.css */
:root {
  --body-background: #f2f2f2;
  --body-color: #444;
  --heading-color: black;
  --action-color: #d64045;
}
html {
  scroll-behavior: smooth;
}
#pricing {
  scroll-margin-top: 120px;
}
#features {
  scroll-margin-top: 120px;
}
#contact {
  margin-top: 5rem;
}
body {
  padding-top: 110px;
  background: #f2f2f2;
  background: var(--body-background);
  color: #444;
  color: var(--body-color);
  font-family:
    BlinkMacSystemFont,
    -apple-system,
    "Segoe UI",
    "Roboto",
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    "Helvetica",
    "Arial",
    sans-serif;
  margin: 0 8px;
  font-size: 108%;
  line-height: 1.5;
}
.navbar {
  background-color: #fff;
  padding: 0.2rem 0;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.navbar-brand .logo {
  height: 100px;
  width: auto;
}
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}
.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.nav-menu a:hover {
  color: #007bff;
}
video {
  width: 50em;
  display: flex;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.99);
  max-width: 100%;
}
a {
  color: #d64045;
  color: var(--action-color);
  text-decoration: underline;
  text-decoration-color: #ffb088;
}
h1 {
  margin: 1rem 0 3rem;
  text-align: center;
  font-weight: 900;
  font-size: 2.5rem;
  color: black;
  color: var(--heading-color);
  line-height: 1.2;
}
body > header {
  margin: 1rem;
  text-align: center;
}
body > header img {
  display: inline-block;
  width: 100px;
  max-width: 100%;
}
body > nav ul {
  margin: 1rem 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.3rem;
  font-weight: bold;
}
body > nav a {
  text-decoration: none;
}
main {
  margin: 2rem auto 4rem;
  max-width: 65rem;
  min-height: calc(100vh - 200px);
  padding: 25px 25px 50px;
  background: white;
  box-shadow: 2px 3px 3px #ddd;
  border-radius: 3px;
  @media (max-width: 500px) {
    padding: 16px 16px 50px;
  }
}
footer {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 1em;
}
hr {
  border: none;
  border-top: 2px dotted #bbb;
  margin: 3rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  gap: 2rem;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.feature h3 {
  text-align: center;
}
.feature p {
  text-align: center;
}
.feature .bi {
  color: blue;
  font-size: 2em;
  margin-left: 40%;
}
.pricing-section {
  padding: 0.5 0;
  background-color: #f8f9fa;
}
.pricing-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
}
.pricing-card {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s;
}
.pricing-card:hover {
  transform: translateY(-5px);
}
.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333333;
}
.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: #0057b7;
  margin: 1rem 0;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.pricing-card ul li {
  margin-bottom: 0.5rem;
  color: #555555;
}
.pricing-card ul li i {
  color: #0057b7;
  margin-right: 0.5rem;
}
.trial-offer {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0057b7;
  margin-top: 2rem;
}
.text-center {
  text-align: center;
}
form {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}
label {
  display: block;
}
input[type=text],
select {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
input[type=submit] {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.support-label {
  font-weight: 600;
}

/* frontend/styles/syntax-highlighting.css */
pre.highlight {
  padding: 16px;
  background-color: #F6F8FA;
}
.highlight .hll {
  background-color: #ffffcc;
}
.highlight .c {
  color: #999988;
  font-style: italic;
}
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}
.highlight .k {
  color: #000000;
  font-weight: bold;
}
.highlight .o {
  color: #000000;
  font-weight: bold;
}
.highlight .cm {
  color: #999988;
  font-style: italic;
}
.highlight .cp {
  color: #999999;
  font-weight: bold;
  font-style: italic;
}
.highlight .c1 {
  color: #999988;
  font-style: italic;
}
.highlight .cs {
  color: #999999;
  font-weight: bold;
  font-style: italic;
}
.highlight .gd {
  color: #000000;
  background-color: #ffdddd;
}
.highlight .ge {
  color: #000000;
  font-style: italic;
}
.highlight .gr {
  color: #aa0000;
}
.highlight .gh {
  color: #999999;
}
.highlight .gi {
  color: #000000;
  background-color: #ddffdd;
}
.highlight .go {
  color: #888888;
}
.highlight .gp {
  color: #555555;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gu {
  color: #aaaaaa;
}
.highlight .gt {
  color: #aa0000;
}
.highlight .kc {
  color: #000000;
  font-weight: bold;
}
.highlight .kd {
  color: #000000;
  font-weight: bold;
}
.highlight .kn {
  color: #000000;
  font-weight: bold;
}
.highlight .kp {
  color: #000000;
  font-weight: bold;
}
.highlight .kr {
  color: #000000;
  font-weight: bold;
}
.highlight .kt {
  color: #445588;
  font-weight: bold;
}
.highlight .m {
  color: #009999;
}
.highlight .s {
  color: #d01040;
}
.highlight .na {
  color: #008080;
}
.highlight .nb {
  color: #0086B3;
}
.highlight .nc {
  color: #445588;
  font-weight: bold;
}
.highlight .no {
  color: #008080;
}
.highlight .nd {
  color: #3c5d5d;
  font-weight: bold;
}
.highlight .ni {
  color: #800080;
}
.highlight .ne {
  color: #990000;
  font-weight: bold;
}
.highlight .nf {
  color: #990000;
  font-weight: bold;
}
.highlight .nl {
  color: #990000;
  font-weight: bold;
}
.highlight .nn {
  color: #555555;
}
.highlight .nt {
  color: #000080;
}
.highlight .nv {
  color: #008080;
}
.highlight .ow {
  color: #000000;
  font-weight: bold;
}
.highlight .w {
  color: #bbbbbb;
}
.highlight .mf {
  color: #009999;
}
.highlight .mh {
  color: #009999;
}
.highlight .mi {
  color: #009999;
}
.highlight .mo {
  color: #009999;
}
.highlight .sb {
  color: #d01040;
}
.highlight .sc {
  color: #d01040;
}
.highlight .sd {
  color: #d01040;
}
.highlight .s2 {
  color: #d01040;
}
.highlight .se {
  color: #d01040;
}
.highlight .sh {
  color: #d01040;
}
.highlight .si {
  color: #d01040;
}
.highlight .sx {
  color: #d01040;
}
.highlight .sr {
  color: #009926;
}
.highlight .s1 {
  color: #d01040;
}
.highlight .ss {
  color: #990073;
}
.highlight .bp {
  color: #999999;
}
.highlight .vc {
  color: #008080;
}
.highlight .vg {
  color: #008080;
}
.highlight .vi {
  color: #008080;
}
.highlight .il {
  color: #009999;
}
/*# sourceMappingURL=/_bridgetown/static/index.QZBUMVPQ.css.map */
