/* General Body */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #333;
  text-align: center;   /* center most text */
}

/* Page Container */
.container, .about-container {
  width: 80%;              /* ✅ not full width */
  max-width: 900px;        /* ✅ cap on big screens */
  margin: 40px auto;       /* ✅ centers horizontally */
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;      /* ✅ center all content inside */
}

/* Headings */
h1, h2, h3 {
  color: #0073e6;
  margin-bottom: 20px;
  text-align: center;
}

/* Paragraphs */
p {
  font-size: 16px;
  margin-bottom: 16px;
  text-align: center;
}

/* Brands Box */
.brands {
  margin: 20px auto;
  padding: 15px;
  background: #f1f5f9;
  border-left: 4px solid #0073e6;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
}

/* Header Navigation */
header {
  background: #002B5B;
  padding: 15px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}
header nav a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #002855;
  color: white;
  text-align: center;
  padding: 12px 0;
  margin-top: 50px;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  align-items: center;   /* ✅ centers fields */
  margin-top: 20px;
}

form input, 
form textarea {
  width: 80%;
  max-width: 400px;      /* ✅ neat width */
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  text-align: center;
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

form button {
  background: #0073e6;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 15px;
  transition: background 0.3s;
}

form button:hover {
  background: #005bb5;
}

/* Lists */
.container ul {
  list-style-position: inside; /* ✅ bullets aligned with text */
  padding-left: 0;
  margin: 0 auto;
  text-align: center;
}

.container li {
  margin: 6px 0;
  text-align: center;
}