body { font-family: -apple-system, "Segoe UI", sans-serif; line-height: 1.6; color: #333; max-width: 850px; margin: 40px auto; padding: 20px; background: #fdfdfd; }
.container { background: white; padding: 40px; border: 1px solid #eee; border-radius: 12px; }
h1 { border-bottom: 3px solid #0056b3; padding-bottom: 10px; font-size: 1.8rem; }
.logo-header { border-bottom: none; padding-bottom: 0; line-height: 1; }
.logo-header img { max-height: 56px; width: auto; display: block; }
h2 { margin-top: 40px; border-left: 5px solid #0056b3; padding-left: 15px; font-size: 1.3rem; }
p { margin: 1em 0; }
a { color: #0056b3; }

.tagline { color: #555; margin-top: 4px; }

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.service-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #0056b3;
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.product-card {
  display: block;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  text-decoration: none;
  color: #333;
  transition: border-color 0.2s;
}

.product-card:hover {
  border-color: #0056b3;
}

.product-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #0056b3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-logo {
  height: 28px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  flex-shrink: 0;
}

.product-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

.contact-form {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: bold;
  color: #444;
}

.form-group input,
.form-group textarea {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0056b3;
  background: white;
}

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

.recaptcha-note {
  font-size: 0.78rem;
  color: #888;
}

.recaptcha-note a {
  color: #888;
}

.submit-button {
  align-self: center;
  background: #0056b3;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.submit-button:disabled {
  background: #aaa;
  cursor: not-allowed;
}

.form-message {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  display: none;
}

.form-message.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-message.error {
  background: #fdecea;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.footer {
  margin-top: 48px;
  text-align: center;
  font-size: 0.85rem;
  color: #999;
  line-height: 2;
}

.footer a {
  color: #999;
}

.footer-note {
  margin-top: 32px;
  font-size: 0.8rem;
  color: #bbb;
}
