/* Отступы */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f0f4fa;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* хедееееееееееееееееееееееееееееееееееееееееееееер */
header {
  background-color: #1e3a8a;
  color: #fff;
  padding: 20px 0;
}



/*лолготиииииииииииииииииииииип*/
.logo {
  font-size: 28px;
  font-weight: 600;
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.logo-img {
  height: 92px;
  width: auto;
  border-radius: 5px;
}







.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #facc15;
}



.zagh3 {
  width: 100%;
    background-color: rebeccapurple;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 12px;
    text-align: center;
    color: yellow;
}

/*поииииииииииииииииииииииииииииииск*/
.search-section {
  background-color: #e0e7ff;
  padding: 50px 20px;
  text-align: center;
  border-bottom: 1px solid #c7d2fe;
}

.search-section h2 {
  margin-bottom: 20px;
  font-size: 32px;
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.search-form input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.search-form button {
  padding: 12px;
  font-size: 16px;
  background-color: #1e3a8a;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.search-form button:hover {
  background-color: #172554;
}

/* вакансииииииииииииииииииииииииииииииииииииииииииии */
.job-listings {
  padding: 60px 20px;
}

.job-listings h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 600;
}

.job-card {
  background-color: #ffffff;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 12px;
  border-left: 6px solid #1e3a8a;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.job-card:hover {
  transform: translateY(-2px);
}

.job-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

.job-card p {
  font-size: 16px;
  color: #555;
}

/* футееееееееееееееееееееееееееееееееееееер */
footer {
  background-color: #1e3a8a;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
}

/* респонсиииииииииииииииииииииииииииииииииииииииив */
@media (max-width: 600px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .search-form {
    width: 100%;
  }

  .search-form input, .search-form button {
    width: 100%;
  }
}





.no-results {
  display: none;
  text-align: center;
  padding: 30px;
  font-size: 18px;
  color: #666;
}







@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  header {
    text-align: center;
  }

  .logo {
    flex-direction: column;
    font-size: 20px;
  }

  .logo-img {
    height: 35px;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }

  .search-form {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .search-form input,
  .search-form button {
    width: 100%;
    font-size: 16px;
    padding: 12px;
  }

  .job-card {
    padding: 20px;
    font-size: 16px;
  }

  footer {
    font-size: 14px;
    padding: 15px 0;
  }

  #no-results {
    font-size: 16px;
    padding: 20px;
  }
}






/*футеееееееееер*/
footer {
  background-color: #222;
  color: #fff;
  padding: 40px 0 20px;
  font-size: 14px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}

.socials li {
  margin-bottom: 5px;
}














.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'Inter', sans-serif;
}

.contact-form button {
  padding: 12px;
  font-size: 1rem;
  background-color: #0056b3;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #004099;
}

.form-status {
  font-size: 0.9rem;
  color: #006400;
  font-weight: 500;
}

.footer-managers {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-managers .manager {
  flex: 1 1 200px;
}