body {
  display: grid;
  flex-direction: column;
  font-family: sans-serif;
  background-color: #fb5924;
  min-height: 100vh;
  margin: 0;
}

.header {
  display: grid;
  grid-template-columns: auto 1fr; /* Logo on the left, nav items in the center, empty space on the right */
  align-items: center;
  background-color: #fb5924;
  height: auto;
  border-bottom: 2px solid #000;
}

.logo img {
  width: 200px;
  height: auto;
  padding: 35px;
}

/* Styles for the navigation menu */
.header nav {
  justify-self: end; /* Align navigation items to the end (right) of their column */
  padding-right: 50px;
}

.header nav a {
  font-size: 20px;
  text-decoration: none;
  color: #333; /* Menu item color */
  padding: 10px 15px; /* Add padding around the text */
  font-weight: bold; /* Embolden the font */
}

.main-content {
  display: flex;
  justify-content: center;
  padding: 40px;
  background-color: #fb5924;
}

.main-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Main heading */
.container1 h1 {
  font-size: 36px; /* Slightly smaller for a cleaner look */
  color: #333;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Subheading */
.container1 .subheading {
  font-size: 20px; /* Differentiates from the main heading */
  color: #555;
  margin-bottom: 20px;
}

/* Secondary heading */
.container1 h2 {
  font-size: 28px; /* Make it smaller than the main heading */
  color: #333;
  margin-top: 10px;
  line-height: 1.4; /* Improve spacing */
}

.container1 h3 {
  font-size: 26px;
  color: #333;
  margin-top: 50px;
  line-height: 1.5;
}

.button-container {
  margin-top: 50px;
  color: #333;
}

.assessment-button {
  margin-top: 10px;
  color: #333;
}

.waitlist-button {
  margin-top: 10px;
}

.button-space {
  margin-top: 50px; /* Adjust the value as needed */
}

.square-picture {
  margin-top: 30px;
  max-width: 100%;
  border-radius: 8px;
  height: auto;
}

.additional-content {
  color: #333;
  margin-top: 50px;
}

p {
  font-size: 16px;
  font-family: 'arial';
}

.what-we-do {
  background-color: #e3ebee;
  padding: 40px;
}

.what-we-do-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.what-we-do h2 {
  font-size: 26px;
}

.what-we-do-grid-item-2 {
  display: grid;
  align-items: start;
}

.what-we-do-grid-item-2 p {
  margin-top: 0;
}

.our-approach {
  background-color: #89aab3;
  padding: 40px;
}

.indented {
  text-indent: 20px; /* Adjust the indentation */
  line-height: 1.5; /* Adjust the line height. 1 means normal line height. You can reduce it further for tighter spacing */
}

.feature-container {
  display: flex;
}

.feature-container img {
  flex: 1;
  max-width: calc(100% / 3 - 10px); /* Divide container width by 3 and subtract spacing */
  margin-right: 10px; /* Adjust spacing between images as needed */
  border-radius: 8px; /* Adjust the value to change the amount of rounding */
  white-space: normal;
}

.test-code-screenshot {
  width: 100%; /* Set width to 100% of its parent container */
  box-sizing: border-box; /* Ensure padding is included in the total width */
}

.test-code {
  width: 100%; /* Make the image fill the width of its container */
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px;
}

h3 {
  margin-top: 40px;
  margin-bottom: 10px;
}

.intro {
  margin-top: 20px;
  color: #333;
}

.example {
  color: #333;
}

.vscode-header {
  color: #333;
}

.download-link {
  font-weight: bold;
}

.button {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  background-color: #1d2c49;
  color: white;
  border: 2px solid #333;
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background-color: #cccccc;
  border-color: #cccccc;
}

.question {
  margin-bottom: 20px; /* Add some space between questions */
}

.radio-buttons label {
  display: inline-block; /* Display radio buttons inline */
  margin-right: 10px; /* Add space between radio buttons */
}

.alert-popup {
  display: none; /* Hide the alert popup by default */
  position: fixed; /* Position the alert popup */
  top: 50%; /* Center the alert popup vertically */
  left: 50%; /* Center the alert popup horizontally */
  transform: translate(-50%, -50%); /* Center the alert popup */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  z-index: 9999; /* Ensure the alert popup appears on top of other elements */
  width: 300px; /* Set the width of the alert popup */
  padding: 20px; /* Add some padding */
  border-radius: 8px; /* Add rounded corners */
}

.alert-content {
  background-color: #fff; /* White background for the alert content */
  padding: 20px; /* Add some padding */
  border-radius: 8px; /* Add rounded corners */
}

.close-alert {
  float: right; /* Float the close button to the right */
  cursor: pointer; /* Change cursor to pointer on hover */
}

#services {
  background-color: #e3ebee;
  padding: 40px;
}

.productised-services {
  font-size: 26px;
  color: #333;
}

.services h2 {
  font-size: 26px;
  color: #333;
}

.our-operation {
  padding-left: 40px; /* Adjust this value as needed */
  padding-right: 40px; /* Optional, for symmetry */
}

.our-operation h2,
#services h2 {
  font-size: 26px;
}

.contact {
  background-color: #89aab3;
  padding: 40px;
}

/* Add styles to 'container' class */
.container {
  padding: 12px 24px 24px 24px;
  margin: 48px 12px;
  background: #e3f2fd;
  border-radius: 4px;
}

/* Add styles to 'input' and 'textarea' selectors */
input[type='text'],
input[type='email'],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

/* Add styles to show 'focus' of selector */
input[type='text']:focus,
input[type='email']:focus,
textarea:focus {
  border: 1px solid rgb(21, 0, 128);
}

/* Add styles to the submit button */
input[type='submit'] {
  background: #1d2c49;
  font-size: 16px;
  font-weight: bold;
  margin: 0 auto;
  outline: 0;
  color: white;
  border: 2px solid #333;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  margin-top: 10px; /* Apply margin-top to all buttons */
}

/* Add styles for 'focus' property */
input[type='submit']:focus {
  background-color: #cccccc;
  border-color: #cccccc;
}

.footer {
  background-color: #000; /* Black background color */
  color: white; /* White text color */
  padding: 40px;
}

.top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  text-decoration: none;
  padding: 10px;
  font-family: sans-serif;
  color: #fff;
  background: #000;
  border-radius: 100px;
  white-space: nowrap;
}
