/* Mobile Styles */
@media screen and (max-width: 768px) {
  .column {
    width: 100%;
  }

  .main-content {
    padding: 20px; /* Decrease padding for smaller screens */
  }
}

@media (min-width: 600px) {
  .logo img {
    max-width: 100px; /* Adjust max-width for larger screens */
  }
}

body {
  font-family: sans-serif;
  background-color: #fb5924;
  margin: 0;
}

.header {
  background-color: #fb5924;
  height: auto;
  border-bottom: 2px solid #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.header .logo {
  width: 100%;
  text-align: center;
}

.logo img {
  max-width: 100px;
  height: auto;
}

/* Navigation Menu */
.header nav {
  background-color: #fb5924;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.header nav a {
  color: #333;
  text-decoration: none;
}

.main-content {
  display: flex;
  justify-content: center;
  padding: 15px; /* Reduce padding for mobile */
  background-color: #fb5924;
}

.main-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px; /* Smaller gap for a tighter layout */
  max-width: 95%; /* Allow more space on smaller screens */
  margin: 0 auto;
}

.container1 h1,
.container2 h1 {
  font-size: 24px; /* Reduce font size for mobile */
  color: #333;
  margin-top: 10px;
  margin-bottom: 8px;
}

.container1 h3,
.container2 h3 {
  font-size: 16px; /* Smaller font size for subheadings */
  color: #333;
  margin-top: 8px;
}

.container2 {
  display: none; /* Hide the container with the square picture */
}

.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;
  margin-top: 10px; /* Apply margin-top to all buttons */
}

.assessment-button,
.waitlist-button {
  color: white; /* Specific color for these buttons */
  margin-top: 10px;
}

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

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

.button.assessment-button {
  margin-top: 20px;
}

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

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

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

.what-we-do,
.our-approach,
.examples {
  padding: 40px;
}

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

.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;
}

.our-operation {
  padding-left: 20px; /* Adjust this value for appropriate mobile padding */
  padding-right: 20px; /* Optional, for symmetry */
}

.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;
}

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

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

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

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

.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;
}
