:root {
    --bg-color: #000;
    --text-color: #f9f9f9;
    --accent-color: #66ccff;
    --services-color: #00b740;
    --border-color: #333;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }
  
  body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    letter-spacing: 0.25px;
  }
  
  header {
    padding: 3rem;
    text-align: center;
  }
  
  .logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    width: 100%;
    margin: 0 auto 0rem;
    margin-bottom: 0rem;
  }
  
  .logo {
    width: 69vw;
    max-width: 420px;
    height: auto;
    aspect-ratio: 811 / 238;
    display: block;
  }
  
  header p {
    font-size: 1.2rem;
    color: #ccc;
    margin-top: 0rem;
  }
  
  section {  
    padding: 2rem 2rem;
    max-width: 1000px;
    margin: auto;
  }
  
  section h2 {
    text-align: center;
    margin-bottom: 2rem;
  }
  
.section-title {
  color: #ffffff;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 75px;
  height: 3px;
  background-color: #66ccff;
  margin: 0.5rem auto 0 auto;
  border-radius: 2px;

}

  .services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
  }
  
  .service {
    position: relative;
    padding-left: 2rem;
    text-align: left;
  }
  
  .service::before {
    content: "➤";
    position: absolute;
    left: 0;
    top: 0rem;
    font-size: 1.3rem;
    color: var(--services-color);
  }
  
  .why-nextgen {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: left;
    width: fit-content;
  }
  
  .why-nextgen li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .why-nextgen li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    color: #00b740;
    line-height: 1;
    transform: translateY(-15%);
  }

  .outro-paragraph {
    font-size: 1.3rem;
    font-style: italic;
    color: #b6dd1d;
    max-width: 500px;
    margin: 0 auto;
    bottom: 2;
    text-align: center;
    line-height: 1.2;
    font-weight: 300;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
  }
  
  input,
  textarea,
  button {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    background-color: #222;
    color: var(--text-color);
  }
  
  button {
    background-color: var(--accent-color);
    color: var(--bg-color);
    cursor: pointer;
  }
  
  button:hover {
    background-color: #99ddff;
    color: #000;
  }
  
  @media (max-width: 768px) {
    .services {
      grid-template-columns: 1fr;
    }
  }
  