* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

body {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    sans-serif;
  background: #f9f9f9;
  overflow: auto;
  min-height: 100vh;
  width: 100vw;
  user-select: none;
  -webkit-user-select: none;
}

header {
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.02),
    0 1px 2px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(0px);
}

a {
  text-decoration: none;
  color: #04395e;
}

.contact-card a:hover {
  color: #3b82f6;
}

.container-contact {
  max-width: 1280px;
  margin: 0 auto;
}

.cont-box {
  margin: 25px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-family: "Roboto", sans-serif;
  color: #04395e;
}

.subtitle {
  color: #4b5563;
  margin-bottom: 2rem;
  border-left: 4px solid #3b82f6;
  padding-left: 1rem;
  font-family: "Roboto", sans-serif;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #111827;
}

.contact-item {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.contact-item strong {
  min-width: 70px;
  color: #4b5563;
}

.form-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.form-card button {
  background: #04395e;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.form-card button:hover {
  background: #2563eb;
}

.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  width: 100%;
  height: 600px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 1.2rem 0;
}

.checkbox-group input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.checkbox-group label {
  font-weight: normal;
  font-size: 0.9rem;
  color: #4b5e77;
}
.recaptcha-note {
  font-size: 0.7rem;
  text-align: center;
  margin-top: 1rem;
  color: #6c86a3;
}
.grecaptcha-badge {
  opacity: 0 !important;
  visibility: hidden !important;
}

@media (max-width: 768px) {
  .cont-box {
    margin: 2.5rem;
  }
  h1 {
    font-size: 1.8rem;
  }
  .map-placeholder {
    width: 100%;
    height: 400px;
  }
.cont-box {
  margin: 25px 15px;
}
}
