/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family:
      "Open Sans",
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
  }
  
  .mainpage {
    background-color: #ffffff;
    overflow: hidden;
    width: 100%;
  }
  
  /* Typography */
  h1,
  h2,
  h3,
  h4,
  .cta-button,
  .nav-link,
  .section-title,
  .section-subtitle,
  .service-title,
  .industry-title {
    font-family:
      "Oswald",
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    text-transform: uppercase;
  }
  
  .section-title {
    font-size: 24px;
    font-weight: 400;
  }
  
  .section-subtitle {
    font-size: 40px;
    font-weight: 600;
  }
  
  .section-description {
    font-size: 20px;
    margin-top: 12px;
    line-height: 1.5;
  }
  
  /* Header */
  .main-header {
    background-color: #1c1c1c;
    display: flex;
    min-height: 72px;
    width: 100%;
    padding: 18px 42px;
    align-items: center;
    justify-content: space-between;
    gap: 40px 100px;
    flex-wrap: wrap;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 24px;
    color: #ffcd19;
    font-weight: 300;
  }
  
  .logo-image {
    aspect-ratio: 0.72;
    object-fit: contain;
    width: 26px;
  }
  
  .logo-text {
    font-size: 24px;
    font-weight: 300;
  }
  
  .main-navigation {
    display: flex;
    min-width: 240px;
    align-items: center;
    gap: 24px;
    font-size: 16px;
    color: #ffffff;
    flex-wrap: wrap;
  }
  
  .nav-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: #ffcd19;
  }
  
  /* Hero Section */
  .hero-section {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 506px;
    width: 100%;
    padding: 96px 42px;
    align-items: flex-start;
    gap: 24px;
    overflow: hidden;
    background-image: url('../img/hero-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  .hero-image {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
  .hero-content {
    position: relative;
    display: flex;
    min-width: 240px;
    width: 641px;
    flex-direction: column;
    z-index: 1;
  }
  
  .hero-text {
    width: 100%;
    color: #ffffff;
  }
  
  .hero-heading {
    width: 100%;
  }
  
  .hero-company {
    font-size: 24px;
    font-weight: 400;
  }
  
  .hero-tagline {
    font-size: 40px;
    font-weight: 600;
  }
  
  .hero-description {
    font-size: 20px;
    margin-top: 12px;
  }
  
  /* CTA Buttons */
  .cta-button {
    background-color: #ffcd19;
    display: flex;
    align-self: flex-start;
    margin-top: 24px;
    min-height: 48px;
    padding: 0 24px;
    align-items: center;
    gap: 4px;
    font-size: 24px;
    color: #000000;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #e6b800;
  }
  
  .button-icon {
    aspect-ratio: 1;
    object-fit: contain;
    width: 24px;
  }
  
  /* Focus Section */
  .focus-section {
    background-color: #ffffff;
    width: 100%;
    padding: 96px 42px;
  }
  
  .focus-container {
    display: flex;
    width: 100%;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
  }
  
  .focus-image {
    aspect-ratio: 1.28;
    object-fit: contain;
    width: 100%;
    min-width: 240px;
    flex: 1;
  }
  
  .focus-content {
    display: flex;
    min-width: 240px;
    flex-direction: column;
    flex: 1;
  }
  
  .focus-text {
    width: 100%;
    color: #353535;
  }
  
  /* Services Section */
  .services-section {
    background-color: #ffffff;
    width: 100%;
    padding: 96px 42px;
  }
  
  .services-intro {
    max-width: 1116px;
    color: #353535;
  }
  
  .services-grid {
    margin: 0 auto;
    margin-top: 48px;
    width: 100%;
    max-width: 1116px;
  }
  
  .services-row {
    display: flex;
    width: 100%;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  
  .service-card {
    background-color: #ffffff;
    box-shadow: 0px 4px 22px rgba(0, 0, 0, 0.25);
    min-width: 240px;
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .service-content {
    flex: 1;
  }
  
  .service-title {
    font-size: 32px;
    text-transform: uppercase;
  }
  
  .service-description {
    font-size: 20px;
    margin-top: 12px;
  }
  
  .service-features {
    font-size: 20px;
    margin-top: 12px;
    line-height: 1.5;
  }
  
  .service-button {
    background-color: #ffcd19;
    display: flex;
    margin-top: 48px;
    min-height: 48px;
    width: 100%;
    padding: 0 24px;
    align-items: center;
    gap: 4px;
    font-size: 24px;
    color: #000000;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    flex-wrap: wrap;
  }
  
  /* Industries Section */
  .industries-section {
    background-color: #353535;
    width: 100%;
    padding: 68px 42px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
  }
  
  .industries-intro {
    width: 100%;
  }
  
  .industries-grid {
    margin-top: 48px;
    width: 100%;
    font-size: 16px;
  }
  
  .industries-row {
    display: flex;
    width: 100%;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  
  .industry-card {
    background-color: #1c1c1c;
    border: 1px solid #6b6b6b;
    min-width: 240px;
    padding: 24px;
    flex: 1;
  }
  
  .industry-title {
    font-size: 32px;
    text-transform: uppercase;
  }
  
  .industry-description {
    margin-top: 12px;
  }
  
  .industry-features {
    margin-top: 12px;
    line-height: 1.5;
  }
  
  .industries-cta {
    margin-top: 48px;
  }
  
  /* Careers Section */
  .careers-section {
    background-color: #ffffff;
    width: 100%;
    padding: 96px 42px;
  }
  
  .careers-container {
    display: flex;
    width: 100%;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
  }
  
  .careers-content {
    display: flex;
    min-width: 240px;
    flex-direction: column;
    flex: 1;
  }
  
  .careers-text {
    width: 100%;
    color: #353535;
  }
  
  .careers-features {
    font-size: 20px;
    margin-top: 12px;
    line-height: 1.5;
  }
  
  .careers-image {
    aspect-ratio: 1.01;
    object-fit: contain;
    width: 100%;
    min-width: 240px;
    flex: 1;
  }
  
  /* About Section */
  .about-section {
    background-color: #ffffff;
    width: 100%;
    padding: 96px 42px;
  }
  
  .about-container {
    display: flex;
    width: 100%;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
  }
  
  .about-image {
    aspect-ratio: 0.91;
    object-fit: contain;
    width: 100%;
    min-width: 240px;
    flex: 1;
  }
  
  .about-content {
    display: flex;
    min-width: 240px;
    flex-direction: column;
    flex: 1;
  }
  
  .about-text {
    width: 100%;
    color: #353535;
  }
  
  .about-features {
    font-size: 20px;
    margin-top: 12px;
    line-height: 1.5;
  }
  
  /* FAQs Section */
  .faqs-section {
    background-color: #353535;
    width: 100%;
    padding: 68px 42px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
  }
  
  .faqs-intro {
    width: 100%;
  }
  
  .faq-accordion {
    margin-top: 48px;
    width: 100%;
  }
  
  .faq-item {
    background-color: #1c1c1c;
    border: 1px solid #6b6b6b;
    width: 100%;
    margin-bottom: 24px;
  }
  
  .faq-question {
    width: 100%;
    padding: 24px;
    font-size: 32px;
    font-family:
      "Oswald",
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    text-transform: uppercase;
    background-color: transparent;
    border: none;
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    position: relative;
  }
  
  .faq-answer p {
    font-size: 20px;
    padding: 0 24px 24px;
  }
  
  .faqs-cta {
    margin-top: 48px;
  }
  
  /* Contact Section */
  .contact-section {
    background-color: #ffffff;
    width: 100%;
    padding: 68px 42px;
  }
  
  .contact-intro {
    width: 100%;
    color: #353535;
  }
  
  .contact-container {
    display: flex;
    margin-top: 48px;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  html {
    scroll-behavior: smooth;
  }
  
  .contact-form {
    background-color: #353535;
    min-width: 240px;
    padding: 24px;
    width: 546px;
  }
  
  .form-fields {
    width: 100%;
  }
  
  .form-input {
    background-color: #1c1c1c;
    border: 1px solid #6b6b6b;
    min-height: 48px;
    width: 100%;
    padding: 0 12px;
    margin-bottom: 12px;
    color: #ffffff;
    font-family:
      "Open Sans",
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 16px;
  }
  
  .form-input::placeholder {
    color: #ffffff;
  }
  
  .form-submit {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
  }
  
  .contact-info {
    background-color: #353535;
    border: 1px solid #6b6b6b;
    min-width: 240px;
    padding: 24px;
    color: #ffffff;
    width: 546px;
  }
  
  .info-item {
    margin-bottom: 21px;
  }
  
  .info-title {
    font-size: 24px;
    text-transform: uppercase;
  }
  
  .info-text {
    margin-top: 6px;
    font-size: 16px;
  }
  
  /* Footer */
  .main-footer {
    background-color: #1c1c1c;
    width: 100%;
    padding: 42px;
    color: #ffffff;
  }
  
  .footer-container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px 100px;
  }
  
  .copyright {
    font-size: 14px;
    font-family:
      "Oswald",
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    line-height: 1.6;
  }
  
  .footer-links {
    display: flex;
    min-width: 240px;
    align-items: flex-start;
    gap: 24px;
    font-size: 16px;
  }
  
  .footer-link {
    color: #ffffff;
    text-decoration: none;
  }
  
  .footer-link:hover {
    color: #ffcd19;
  }

  .mobile-nav {
    display: none;
  }

  .burger {
    display: none;
  }

  .main-section {
    padding: 70px 42px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .popup {
    position: fixed;
    bottom: 0;
    background: #fff;
    z-index: 9999;
    padding: 42px;
  }

  .popup-title {
    font-weight: 500;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 8px;
  }

  .popup-btns {
    display: flex;
    gap: 24px;
    margin-top: 24px;
  }

  .popup-btns button {
    margin-top: 0px;
    font-family: 'Oswald', sans-serif;
  }

  .btn-secondary {
    background: none;
    border: 1px solid #000;
  }
  
  /* Media Queries */
  @media (max-width: 991px) {
    .main-header,
    .hero-section,
    .focus-section,
    .services-section,
    .industries-section,
    .careers-section,
    .about-section,
    .faqs-section,
    .contact-section,
    .main-footer {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .main-navigation,
    .hero-content,
    .focus-content,
    .services-intro,
    .services-grid,
    .industries-intro,
    .industries-grid,
    .careers-content,
    .about-content,
    .faqs-intro,
    .faq-accordion,
    .contact-intro,
    .contact-form,
    .contact-info {
      max-width: 100%;
    }
  
    .hero-tagline,
    .section-subtitle {
      font-size: 32px;
    }
  
    .service-button,
    .cta-button {
      margin-top: 40px;
    }
  
    .focus-image,
    .careers-image,
    .about-image {
      max-width: 100%;
    }

    .main-navigation {
      display: none;
    }

    .focus-container, .about-container {
      flex-direction: column-reverse;
    }

    .popup-btns {
      flex-direction: column;
      gap: 12px;
    }

    .footer-container {
      flex-direction: column-reverse;
      align-items: center;
    }
    
    .mobile-nav {
      display: flex;
      flex-direction: column;
      gap: 24px;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 24px 0;
      padding-top: 100px;
      background: #1C1C1C;
      position: fixed;
      height: 100vh;
      width: 100%;
      transform: translateY(-100%);
      transition: transform 0.3s ease;
      z-index: 99;
    }

    .mobile-nav.active {
      transform: translateY(0);
    }

    body.no-scroll {
      overflow: hidden;
    }

    header {
      position: relative;
      z-index: 999;
    }

    .mobile-nav .main-navigation {
      display: flex;
      flex-direction: column;
      gap: 24px;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    .burger {
      display: block;
      background: none;
      border: none;
    }
  }
  