
/* Global Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
}

.page-container {
  max-width: 800px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.logo {
  max-height: 60px;
}
.header-text {
  max-width: 60%;
  text-align: right;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Hide the header text on small screens */
@media (max-width: 500px) {
  .header-text {
    display: none;
  }
}

.responsive-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 5px 0;
}

.responsive-img2 {
  width: 100%;
  height: auto;
  display: block;
  margin: 5px 0;
}

.responsive-img3 {
  width: 500px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

.responsive-img4 {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .responsive-img {
    display: none;
  }
}

/* ===== Text Styles ===== */

/* Main text — black, 12 pt */
.main {
  font-size: 1rem;          /* ~12 pt */
  color: black;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 3px;
}

.main2 {
  font-size: 1rem;          /* ~12 pt */
  color: black;
  font-weight: normal;
  text-indent: 15px;
  margin-top: 0;
  margin-bottom: 3px;
  text-align: left;
}

/* Product title — bold, larger text */
.product-title {
  font-size: 1.17rem;
  color: black;
  font-weight: bold;
}

/* Product subtitle — bold and blue */
.product-sub {
  font-size: 1.1rem;
  color: blue;
  font-weight: bold;
  margin-top: 3 px;
  margin-bottom: 3px;
}

/* Tile heading — blue, underlined */
.tile-top {
  font-size: 1rem;       /* ~12 pt */
  color: blue;
  text-decoration: underline;
  font-weight: normal;
}

/* Tile body text — black, normal weight */
.tile-body {
  font-size: 0.82rem;       /* ~10 pt */
  color: black;
  font-weight: normal;
}


/* Second tiles for technical information boxes with left align */
.tile-top2 {
  font-size: 1rem;       /* ~12 pt */
  color: blue;
  text-decoration: underline;
  font-weight: normal;
  text-align: left;
  margin: 0;
}

.tile-body2 {
  font-size: 0.82rem;       /* ~10 pt */
  color: black;
  font-weight: normal;
  text-align: left;
  margin: 0;
}


/* Education title — large, green and bold */
.title-green {
  font-size: 1.35rem;
  color: green;
  font-weight: bold;
  text-align: center;
}


/* Left table cell text — black and bold */
.table-left {
  font-size: 0.9rem;
  color: black;
  font-weight: bold;
  text-align: left;
}

/* Right table cell text — black and normal weight */
.table-right {
  font-size: 0.9rem;
  color: black;
  font-weight: normal;
  text-align: left;
}

.table-right2 {
  font-size: 1rem;
  color: black;
  font-weight: normal;
  text-align: left;
}

/* Education text - normal weight, black, 1.3 rem */
.text-large {
  font-size: 1.3rem;
  color: black;
  font-weight: normal;
  text-align: left;
}

/* Pricing text — greeen, bold and large */
.text-price {
  font-size: 2.6rem;
  color: #007E39;
  font-weight: bold;
  text-align: center;
}




/* Navbar */
.navbar {
  background-color: #0056b3;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  transition: background-color 0.2s ease;
}
.nav-links li {
  margin: 0;
}
.nav-links a {
  display: block;
  padding: 10px 10px;
  color: #fff;
  text-decoration: none;
}
.nav-links a:hover {
  background-color: #003f7f;
  cursor: pointer;
}

/* Burger Menu */
.menu-toggle {
  display: none;
  color: #fff;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
    flex-direction: column;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* About Banner */
.about-banner {
  background-color: limegreen;
  color: #fff;
  text-align: center;
  padding: 4px 0;
  border-radius: 8px;
  margin: 5px 0;
  font-weight: bold;
}

.about-banner2 {
  background-color: limegreen;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  border-radius: 8px;
  margin: 10px 0;
  font-weight: bold;
  font-size: 1.5rem;
}

/* Content Boxes */
.box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 10px 0;
}

/* Content boxes (tiles) */
.content-box {
  width: 250px;
  height: auto;                 /* allow height to fit contents */
  border: 1px solid #FFF;
  text-align: center;           /* center text and image */
  margin: 2px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;       /* stack elements vertically */
  align-items: center;          /* center horizontally */
  padding: 0;                   /* no inner padding */
  background-color: #fff;
}

/* Content boxes for technical information pages (tiles) */
.content-box2 {
  width: 250px;
  height: auto;                 /* allow height to fit contents */
  border: 1px solid #FFF;
  text-align: center;           /* center text and image */
  margin: 2px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;       /* stack elements vertically */
  align-items: center;          /* center horizontally */
  padding: 0;                   /* no inner padding */
  background-color: #fff;
}

.content-box2 p {
  align-self: flex-start;    /* move <p> elements to left edge */
  text-align: left;
  width: 100%;               /* optional: ensures full width */
}

/* Image inside content box */
.content-box img {
  width: 100%;                  /* scale to box width */
  height: auto;                 /* keep aspect ratio */
  display: block;               /* remove inline spacing */
  margin: 0;                    /* no margin */
  padding: 0;                   /* no padding */
  border: none;                 /* no border */
}

/* Title and body text inside the content box */
.content-box .tile-top,
.content-box .tile-body {
  margin: 2px 0 0 0;            /* 2px gap above each line */
  padding: 0;
  line-height: 1;               /* tight line spacing */
}

.full-width-box {
  width: 100%;                  /* full container width */
  background-color: #fff;       /* white background */
  border: 1px solid #fff;       /* black outline is #000*/
  border-radius: 0;             /* no rounding */
  box-sizing: border-box;       /* include border in width */
  padding: 2px 10px;            /* optional padding inside */
  margin: 2px 0;                /* vertical spacing from other elements */
}

.info-table1 {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto; /* allows natural sizing based on content */
}

.info-table1 td {
  border: 1px solid #ccc;
  padding: 2px 2px;
  vertical-align: top;
}

.info-table1 td:first-child {
  text-align: center; /* first column */
}

.info-table1 td:nth-child(2) {
  text-align: left;   /* second column */
}

.info-table2 {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto; /* allows natural sizing based on content */
}

.info-table2 td {
  border: 1px solid #fff;
  padding: 5px 8px;
  vertical-align: top;
}

/* Left column: image-only, auto width */
.info-table2 .col-left {
  width: auto;          /* let it size to image naturally */
  white-space: nowrap;
}

.info-table2 .col-left img {
  display: block;
  height: auto;
  max-width: none;      /* don’t shrink image to cell width */
}

/* Right column: fill remaining space */
.info-table2 .col-right {
  width: 100%;
  font-size: 1.3rem;
}


/* Two column div boxes, for use on education page */

.container2 {
  display: flex;
  flex-wrap: wrap;           /* allows stacking when needed */
  width: 100%;               /* ensure full width within .page-container */
  max-width: 800px;          /* limit total width */
  margin: 0 auto;            /* center the container on page */
}

/* Each box */
.box {
  flex: 1 1 50%;             /* grow/shrink, start at 50% each */
  padding: 10px 20px;
  box-sizing: border-box;    /* ensures padding doesn’t add extra width */
  border: 5px solid #fff;
  text-align: center;
}

/* Optional visual distinction */
.box-left {
  background-color: #f5f5f5;
}
.box-right {
  background-color: #DBE7C3;
}

/* Responsive rule: stack vertically below 500px */
@media (max-width: 500px) {
  .box {
    flex: 1 1 100%;          /* take full width */
  }
}

/* Two column empty boxes, shrinking on small pages to vertical stacking */

.container3 {
  display: flex;
  flex-wrap: wrap;           /* allows stacking when needed */
  width: 100%;               /* ensure full width within .page-container */
  max-width: 800px;          /* limit total width */
  margin: 0 auto;            /* center the container on page */
}

/* Each box */
.box2 {
  flex: 1 1 50%;             /* grow/shrink, start at 50% each */
  padding: 0px 10px;
  box-sizing: border-box;    /* ensures padding doesn’t add extra width */
  border: 1px solid #D3D3D3;
  text-align: center;
}

/* Optional visual distinction */
.box-left2 {
  background-color: #fff;
}
.box-right2 {
  background-color: #fff;
}

.box3 {
  flex: 1 1 50%;             /* grow/shrink, start at 50% each */
  padding: 0px 10px;
  box-sizing: border-box;    /* ensures padding doesn’t add extra width */
  border: 1px solid #d3d3d3;
  text-align: left;
}

/* Responsive rule: stack vertically below 500px */
@media (max-width: 500px) {
  .box2 {
    flex: 1 1 100%;          /* take full width */
  }
}


/* Footer */
.footer-box a {
  color: #0056b3;
  text-decoration: none;
}
.footer-box a:hover {
  text-decoration: underline;
}


.footer-container {
  display: flex;
  flex-wrap: wrap;               /* allows boxes to wrap on small screens */
  justify-content: center;       /* center align within the page */
  gap: 15px;                     /* spacing between boxes */
  padding: 5px 0;
  margin-top: 0px;
}

/* Individual footer boxes */
.footer-box {
  flex: 1 1 220px;
  max-width: 300px;
  height: auto;                 /* allow the box to grow with content */
  margin: 0;
  background-color: #fff;
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;       /* make items stack vertically */
  justify-content: flex-start;  /* align items to the top */
  align-items: center;          /* center horizontally */
  font-weight: normal;
  text-align: center;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 0px;                /* optional, adds breathing room */
}

.footer-box a {
  display: block; /* each link takes its own line */
  margin: 2px;      /* space between links */
  padding: 0;            /* remove any padding */
  line-height: 1;        /* make lines tight */
  color: #0056b3;
  text-decoration: none;
}

.footer-box p {
  margin: 0 0 5px;    /* small gap below title */
  padding: 0;
  line-height: 1;        /* optional: tighten title line too */  
  color: #000;  
  font-weight: bold;
}

/* Optional: tweak stacking behavior for very narrow screens */
@media (max-width: 500px) {
  .footer-box {
    flex: 1 1 100%;
    max-width: none;
  }
}

