:root {
  --bg: #f4f7fa;
  --surface: #ffffff;
  --text: #1b2733;
  --muted: #5e6b78;
  --primary: #28478D;
  --primary-dark: #3257aa;
  --border: #d8e1e8;
  --shadow: 0 15px 35px rgba(13, 37, 62, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbfe 0%, var(--bg) 100%);
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 2.5rem auto;
}

.hero {
  text-align: center;
  margin-bottom: 2.2rem;
}

.logo {
  width: min(220px, 70vw);
  height: auto;
  margin-bottom: 1rem;
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
}

.hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.content-grid {display: grid;text-align: center;max-width: 640px;margin:0 auto;
  /*
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  */
}

.contact-infos,
.contact-form-wrapper {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.contact-infos p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.contact-infos a {
  color: var(--primary);
  text-decoration: none;
}

.contact-infos a:hover {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
  text-align: left;
}

.form-status {
  margin: 0 0 1rem;
  padding: 0.8rem 0.95rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}

.form-status.success {
  color: #0a5b2d;
  background: #e8f8ee;
  border: 1px solid #b8e4c8;
}

.form-status.error {
  color: #7e1a1a;
  background: #fdeeee;
  border: 1px solid #f3c3c3;
}

.contact-form label {
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  color: var(--text);
  background-color: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(0, 120, 184, 0.2);
  border-color: var(--primary);
}

.contact-form button {
  margin-top: 0.3rem;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--primary);
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-1px);
  background-color: var(--primary-dark);
}

.form-note {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.88rem;
}

footer {padding:20px 0;text-align: center;width: 100%}
footer p {font-size: 0.9rem;}

@media (max-width: 900px) {
  .content-grid {
	grid-template-columns: 1fr;
  }
}