.footer {
  background: linear-gradient(to right, #0f2a37 98%, rgba(15, 42, 55, 0.96));
  color: white;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-logo {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: white;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.footer-social a {
  background-color: white;
  color: #0f2a37;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}

.footer-social a:hover {
  background-color: #eaeaea;
}

.footer-social a i {
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.contact-form-section {
  background: #f7fafc;
  padding: 60px 0 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form-container {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(25,52,66,0.10);
  padding: 40px 32px;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}

.contact-form-container h2 {
  text-align: center;
  margin-bottom: 28px;
  color: #173442;
}

.contact-form .form-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #173442;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid #cfd8dc;
  border-radius: 8px;
  font-size: 1rem;
  background: #f4f8fb;
  color: #173442;
  transition: border 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #193442;
  outline: none;
}

.contact-submit-button {
  width: 100%;
  padding: 14px 0;
  background: #193442;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 10px;
}

.contact-submit-button:hover {
  background: #25506a;
}

@media (max-width: 600px) {
  .contact-form-container {
    padding: 24px 8px;
  }
}
