body {
  margin: 0;
  font-family: 'Assistant', sans-serif;
  background: #f4f7fa;
  color: #333;
}

/* Top header section */
header {
  background: linear-gradient(90deg, #0e1e40, #003060);
  color: white;
  padding: 1rem 1rem;
  text-align: center;
}

header h1 {
  font-size: 2rem;
  margin: 0.3rem 0;
}

header p {
  font-size: 0.95rem;
}

/* Logo style */
.logo {
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.5rem;
  background: linear-gradient(90deg, #00ffcc, #00ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* General section layout */
.section {
  padding: 1.5rem 1rem;
  max-width: 800px;
  margin: auto;
}

.section + .section {
  margin-top: 1rem;
}

/* Section titles */
.section h2 {
  color: #0e1e40;
  margin-bottom: 0.1rem;
  text-align: center;
}

/* Grid for division boxes */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.5rem;
  margin-top: 0.5rem;
}

/* Individual service box */
.service {
  background: white;
  border-radius: 12px;
  padding: 1.2rem 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-6px);
}

/* Contact form container */
.contact {
  background: white;
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Form elements */
form input,
form textarea,
form button {
  width: 100%;
  margin: 0.3rem 0;
  padding: 0.55rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
}

/* Submit button */
form button {
  background-color: #0e1e40;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #003060;
}

/* Footer always at the bottom, inside viewport */
footer {
  background: #0e1e40;
  color: white;
  text-align: center;
  padding: 0.6rem; /* Slightly reduced padding */
  margin-top: auto; /* Push footer to the bottom */
}

/* Form message alerts */
#form-message {
  margin-top: 0.8rem;
  text-align: center;
  font-weight: bold;
  padding: 0.8rem;
  border-radius: 8px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

#form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
