/* Responsive styles for mobile devices */
@media (max-width: 700px) {
  header {
    padding: 1rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
    margin-top: 2rem;
  }
  p {
    max-width: 95vw;
    font-size: 1rem;
    margin: 0 1vw 1rem 1vw;
  }
  .services {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
  }
  .service-box, .service-box-wide {
    width: 95vw;
    min-width: unset;
    max-width: 98vw;
    padding: 1rem;
    box-sizing: border-box;
  }
  .service-box-wide {
    margin-top: 1rem;
  }
  form {
    max-width: 98vw;
    padding: 0 1vw;
  }
  footer {
    padding: 1rem 0 1rem 0;
  }
  .footer-container {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    max-width: 98vw;
    padding: 0 1vw;
  }
  .footer-links {
    min-width: unset;
    width: 100%;
    text-align: center;
  }
  .footer-company-center h3 {
    font-size: 1.2rem;
  }
  .footer-company-center p {
    font-size: 0.95rem;
    max-width: 95vw;
  }
}
.footer-company-center {
  text-align: center;
  margin-bottom: 2rem;
}
.footer-company-center h3 {
  font-size: 1.7rem;
  font-family: 'Roboto', serif;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-company-center p {
  color: #bdbdbd;
  font-size: 1rem;
  margin: 0 auto;
  max-width: 600px;
}
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #0d1423;
  color: #ffffff;
}

/* ...existing CSS from index.html <style> block... */
header {
  padding: 2rem;
  text-align: center;
  background-color: #101b33;
}
header img {
  max-width: 160px;
}
h1 {
  font-family: 'Roboto', serif;
  font-size: 2.5rem;
  margin: 1rem 0 0.5rem;
}
h2 {
  font-family: 'Roboto', serif;
  font-size: 1.8rem;
  margin-top: 3rem;
  text-align: center;
  color: #f0f0f0;
}
p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  text-align: center;
  line-height: 1.6;
  color: #dcdcdc;
}
.cta-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: #7d8eff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.cta-button:hover {
  background: #6a7bff;
  box-shadow: 0 4px 16px rgba(125, 142, 255, 0.3);
  transform: scale(1.07);
}
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.service-box {
  background-color: #1a233a;
  padding: 2rem;
  border-radius: 8px;
  width: 280px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  transition: box-shadow 0.3s, transform 0.3s;
  outline: none;
  flex: 0 0 280px;
}
.service-box-wide {
  width: calc(3 * 280px + 2 * 2rem);
  flex: 0 0 calc(3 * 280px + 2 * 2rem);
  text-align: center;
  margin-top: 2rem;
}
.service-box:hover {
  box-shadow: 0 0 32px rgba(125, 142, 255, 0.4);
  transform: scale(1.05);
  border: 1px solid #7d8eff;
}
h1, h2, h3 {
  transition: color 0.3s;
  cursor: pointer;
}
h1:hover, h2:hover, h3:hover {
  color: #7d8eff;
}
footer {
  margin-top: 3rem;
  padding: 2rem 0 1.5rem 0;
  background: #101b33;
  color: #eaeaea;
  font-family: 'Roboto', serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-links {
  flex: 1;
  min-width: 180px;
}
.footer-links h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1rem;
  font-family: 'Roboto', serif;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 0.7rem;
}
.footer-links ul li a {
  color: #eaeaea;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s, border-bottom 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.footer-links ul li a:hover {
  color: #7d8eff;
  border-bottom: 2px solid #7d8eff;
}
.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid #444;
  text-align: center;
  color: #bdbdbd;
  font-size: 0.95rem;
  padding-top: 1rem;
}
/* Additional styles for contact form */
form {
  max-width: 600px;
  margin: 0 auto;
}
form div {
  margin-bottom: 1rem;
}
form label {
  display: block;
  margin-bottom: 0.5rem;
}
form input, form textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 6px;
  background: #1a233a;
  color: #fff;
  border: 1px solid #444;
}
form button {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2rem;
  background: #7d8eff;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
form button:hover {
  background: #6a7bff;
  box-shadow: 0 4px 16px rgba(125, 142, 255, 0.3);
  transform: scale(1.07);
}
/* Highlight selected section (active/focus) */
section:focus-within, .service-box:focus-within {
  outline: 2px solid #7d8eff;
  outline-offset: 4px;
  box-shadow: 0 0 32px rgba(125, 142, 255, 0.2);
}
/* Make service boxes focusable for accessibility */
.service-box {
  outline: none;
}
.service-box:active {
  border: 2px solid #7d8eff;
  box-shadow: 0 0 40px rgba(125, 142, 255, 0.5);
  transform: scale(1.08);
}
