.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-header {
  background: linear-gradient(135deg, #0056b3, #004494);
  color: white;
  padding: 60px 0;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.contact-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 55%
  );
  pointer-events: none;
}

.contact-header h1 {
    font-family: 'Special Gothic Condensed One', sans-serif;
  font-size: 2.8em;
  font-weight: 600;
  margin: 20px 15px 0 0;
}

.contact-header p {
	 font-family: "Manrope", sans-serif;
  font-size: 1.2em;
  opacity: 0.9;
}

.contact-content {
  display: flex !important;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 0 60px;
}

.contact-form {
  flex: 2;
  min-width: 400px;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 25px;
}

label {
	 font-family: "Manrope", sans-serif;
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
	 font-family: "Manrope", sans-serif;
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e1e8ef;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  color: #2c3e50;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0056b3;
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

.contact-form textarea {
	 font-family: "Manrope", sans-serif;
  height: 180px;
  resize: vertical;
}

.contact-form button {
    font-family: 'Special Gothic Condensed One', sans-serif;
  background-color: #0056b3;
  color: white;
  padding: 15px 35px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 200;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-form button:hover {
  background-color: green;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
}

.contact-item {
  margin-bottom: 35px;
  position: relative;
  padding-left: 45px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 30px;
  height: 30px;
  background-color: #e6eef7;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
}

.contact-item.address::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230056b3'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.contact-item.phone::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230056b3'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.contact-item.email::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230056b3'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.contact-item h3 {
font-family: 'Special Gothic Condensed One', sans-serif;
  color: #0056b3;
  margin-bottom: 10px;
  font-size: 1.2em;
  font-weight: 600;
}

.contact-item p {
	 font-family: "Manrope", sans-serif;
  color: #2c3e50;
  line-height: 1.8;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.form-col {
  flex: 1;
}

@media (max-width: 968px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-form {
    min-width: 100%;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .contact-header {
    padding: 40px 0;
  }

  .contact-header h1 {
    font-size: 2em;
  }
}
