/* static/css/contact.css */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
  color: #333;
  padding-top: 60px;
  /* Adjust according to header height */
  overflow-x: hidden;
  /* Prevent horizontal scrolling */
}

.solution {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 50px;
  gap: 400px;
}

.solution h1 {
  color: rgb(6, 94, 149);
  font-size: 45px;
  line-height: 1.2;
  color: #000;
  /* or white if needed */
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.solution img {
  max-width: 100%;
  height: 400px;
  width: 600px;
  /* adjust as needed */
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.contact-left {
  flex: 1;
  min-width: 300px;
}

.contact-left h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-left p {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.contact-right {
  flex: 2;
  min-width: 500px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
}

.contact-form label {
  grid-column: span 1;
  font-weight: bold;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  grid-column: span 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

.contact-form textarea {
  grid-column: span 2;
  resize: vertical;
}

.submit-button {
  grid-column: span 2;
  padding: 12px;
  background-color: #007BFF;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.submit-button:hover {
  background-color: #0056b3;
}

.disclaimer {
  grid-column: span 2;
  font-size: 14px;
  color: #555;
}

.required-star {
  color: red;
}

[hidden] {
  display: none;
}


.container {
  margin: 0 auto;
  padding: 40px 20px;
}

.section {
  margin-bottom: 30px;
}

.container h1,
.container h2,
.container h3 {
  font-size: 40px;
  color: rgb(6, 94, 149);
  margin-bottom: 15px;
  text-align: center;
}

.container p {
  font-size: 20px;
  line-height: 1.6;
  color: #555;
  text-align: center;
}

.container ul {
  list-style: none;
  /* Removes bullets */
  padding-left: 0;
  font-size: 20px;
  color: #444;
}

.container ul li {
  text-align: center;
  margin-bottom: 10px;
}


.highlight {
  background-color: #e6f4ff;
  padding: 2px 4px;
  border-radius: 4px;
  font-weight: bold;
}