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

    body {
      font-family: 'Orbitron', sans-serif;
      background-color: black;
      color: white;
    }

    header {
      height: 170px;
      background-color: black;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 40px;
    }

    .header-top {
      height: 100%;
      justify-content: flex-start;
      align-items: center;
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .header-top img.logo {
      height: 50px;
    }

    nav {
      text-align: right;
      padding-bottom: 18px;
    }

    nav a {
      transition: color 0.2s ease;
      color: white;
      text-decoration: none;
      font-weight: 700;
      margin-left: 25px;
      font-size: 14px;
    }

    nav a:hover {
      color: #e20000;
    }

    .hero {
      background: white;
    }

    .hero img {
      display: block;
      width: 100%;
      height: auto;
    }

    .about {
      background-color: white;
      color: black;
      text-align: center;
      padding: 60px 30px;
      font-family: 'Open Sans', sans-serif;
    }

    .about p {
      max-width: 960px;
      margin: 0 auto;
      font-size: 18px;
      line-height: 1.6;
    }

    .about strong {
      font-weight: bold;
    }

    .builds {
      text-align: center;
      padding: 40px 20px;
    }

    .builds h3 {
      font-size: 14px;
      margin-bottom: 20px;
    }

    .hover-img {
      position: relative;
      display: inline-block;
      margin: 10px;
    }

    .hover-img img {
      width: 400px;
      border-radius: 4px;
    }

    .hover-img img.hover {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .hover-img:hover img.hover {
      opacity: 1;
    }

    footer {
      display: flex;
      justify-content: space-between;
      padding: 40px;
      flex-wrap: wrap;
      font-family: 'Open Sans', sans-serif;
    }

    .footer-left img {
      height: 30px;
      margin-bottom: 10px;
    }

    .social a img {
      height: 30px;
      margin-right: 10px;
    }

    .footer-right {
      text-align: right;
      font-size: 14px;
      line-height: 1.8;
    }

    .footer-right a {
      color: white;
      text-decoration: none;
    }

    .footer-bottom {
      text-align: center;
      font-size: 12px;
      padding: 20px;
      border-top: 1px solid #333;
      font-family: 'Open Sans', sans-serif;
    }
  
    .contact-wrapper {
      background-color: #1e1e1e;
      padding: 40px;
    }
    .contact-section {
      height: 440px;
      align-items: stretch;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
      gap: 40px;
    }
    .contact-left, .contact-right {
      display: flex;
      flex-direction: column;
      justify-content: stretch;
      min-height: 370px;
      flex: 1 1 400px;
    }
    .contact-left p {
      margin-bottom: 10px;
      font-family: 'Open Sans', sans-serif;
      font-size: 14px;
      line-height: 1.6;
    }
    iframe {
      flex-grow: 1;
      display: block;
      min-height: 370px;
      height: 100%;
      width: 100%;
      height: 370px;
      border: 0;
      
    }
    .contact-right form {
      height: 100%;
      justify-content: space-between;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .contact-right label {
      font-size: 0;
    }
    .contact-right input,
    .contact-right textarea {
      padding: 12px;
      font-size: 16px;
      border: 1px solid white;
      background: white;
      color: black;
    }
    .contact-right input::placeholder,
    .contact-right textarea::placeholder {
      color: black;
    }
    .contact-right .form-action-row {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .contact-right button {
      width: fit-content;
      padding: 12px 24px;
      background: white;
      color: black;
      font-weight: bold;
      border: none;
      cursor: pointer;
    }
    #formMessage {
      font-size: 12px;
    }
    @media (max-width: 768px) {
      .contact-section {
      height: 440px;
      align-items: stretch;
        flex-direction: column;
        padding: 0 20px;
      }
    }

nav a.active {
  color: #e20000 !important;
}