.services_main_page {
  /*
  background:url("images/FSD_Home.png"); 
  height: 1438;
*/
  background-color: #FFFFFF;
  margin-left: auto;
  margin-right: auto;
  width: 1200px;
}

.services_lead_msg {
  background: url("images/title_Services.jpg");
  height: 190px;
  top: -40px;
  z-index: 3;
  position: relative;
}

.services_lead_msg_shadow {
  background: url("images/bg_Content_TopGradient.gif");
  height: 130px;
  width: 1200px;
  margin-top: -40px;
  position: static;
}

.services_desc_container {
  background: url("images/bg_ContentHead_Swoosh.jpg");
  height: 190px;
  width: 817px;
  margin-top: 0px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.services_desc_title {
  font-family: ExoLight, verdana, helvetica, sans-serif;
  font-size: 58px;
  color: #009996;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  position: relative;
}

.services_desc_content {
  font-family: ExoRegular, verdana, helvetica, sans-serif;
  font-size: 18px;
  color: #0b436b;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.services_tech_container {
  margin-left: auto;
  margin-right: auto;
  width: 900px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}

.services_tech_item {
  width: 120px;
  text-align: center;
  float: left;
  margin-right: 20px;
  margin-top: 30px;
}

.services_tech_icon_container {
  width: 100px;
  height: 80px;
  /* Fixed height for all icons */
  margin: 0 auto 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.services_tech_icon_usb {
  background: url("images/icon_USB.jpg") no-repeat center;
  background-size: contain;
  width: 100px;
  height: 60px;
}

.services_tech_icon_ethernet {
  background: url("images/icon_Ethernet.jpg") no-repeat center;
  background-size: contain;
  width: 100px;
  height: 60px;
}

.services_tech_icon_arm {
  background: url("images/icon_ARM.jpg") no-repeat center;
  background-size: contain;
  width: 100px;
  height: 75px;
}

.services_tech_icon_linux {
  background: url("images/icon_Linux.png") no-repeat center;
  background-size: contain;
  width: 100px;
  height: 75px;
}

.services_tech_icon_android {
  background: url("images/icon_Android.png") no-repeat center;
  background-size: contain;
  width: 100px;
  height: 75px;
}

.services_tech_icon_qt {
  background: url("images/icon_Qt.png") no-repeat center;
  background-size: contain;
  width: 100px;
  height: 75px;
}

.services_tech_title {
  font-family: ExoBlack, verdana, helvetica, sans-serif;
  font-size: 18px;
  color: #0b436b;
  margin-bottom: 10px;
  height: 25px;
  /* Fixed height for consistent spacing */
  line-height: 25px;
}

.services_tech_desc {
  font-family: ExoRegular, verdana, helvetica, sans-serif;
  font-size: 16px;
  color: #0b436b;
  min-height: 20px;
  /* Ensures consistent bottom alignment */
}

.services_hub {
  background: url("images/bg_Content_Hub.gif") no-repeat;
  margin-left: 120px;
  margin-top: 60px;
  width: 228px;
  height: 228px;
  position: absolute;
}

.services_method_container {
  width: 800px;
  margin-top: 140px;
  margin-bottom: 80px;
  margin-left: 280px;
  margin-bottom: 0px;
  position: relative;
}

.services_method_title {
  font-family: ExoLight, verdana, helvetica, sans-serif;
  font-size: 58px;
  color: #009996;
  position: relative;
}

.services_method_desc {
  font-family: ExoRegular, verdana, helvetica, sans-serif;
  font-size: 16px;
  color: #0b436b;
  margin-top: 30px;
  margin-left: 70px;
  position: relative;
}

.services_method_consultation {
  background: url("images/btn_CTA_Consultation.png");
  height: 48px;
  width: 240px;
  margin-top: 60px;
  position: relative;
}

.services_platform_section {
  margin: 40px 0 20px 0;
  /* Reduced bottom margin from 40px to 20px */
  padding: 10px 20px 10px 20px;
  /* Reduced bottom padding from 20px to 10px */
}

.services_section_divider {
  height: 2px;
  background: #f5463d;
  margin: 30px 0;
}

.services_content_container {
  display: flex;
  gap: 40px;
  margin: 30px 0;
}

.services_content_item {
  flex: 1;
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.services_content_header {
  color: #f5463d;
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: bold;
}

.services_content_text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.services_learn_more {
  color: #f5463d;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #f5463d;
  padding: 10px 15px;
  border-radius: 5px;
  display: inline-block;
  transition: all 0.3s;
}

.services_learn_more:hover {
  background: #f5463d;
  color: white;
}

@media (max-width: 768px) {
  .services_content_container {
    flex-direction: column;
  }
}