* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  h1 {
    font-size: 28px;
  }
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #f4fbff, #ffffff);
  color: #0b3d91;
}

.contact-page {
  padding: 60px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: white;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #f57c00;
}

.logo span {
  color: #ffb300;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #0d63c9;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  left: 0;
  bottom: -5px;
  background: #ffb300;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

.contact-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.contact-hero h1 {
  font-size: 42px;
  color: #0d63c9;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 18px;
  color: #16324f;
  line-height: 1.7;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-info-box,
.contact-form-box {
  background: white;
  border-radius: 20px;
  padding: 35px;
  width: 450px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-box h2,
.contact-form-box h2 {
  color: #f57c00;
  margin-bottom: 20px;
  font-size: 28px;
}

.contact-info-box p {
  margin-bottom: 14px;
  color: #16324f;
  font-size: 16px;
}

.contact-extra {
  margin-top: 30px;
  padding: 20px;
  background: #f4fbff;
  border-radius: 16px;
}

.contact-extra h3 {
  color: #0d63c9;
  margin-bottom: 10px;
}

.contact-extra p {
  margin-bottom: 0;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #dbeafe;
  border-radius: 12px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  outline: none;
  transition: 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0d63c9;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

footer {
  text-align: center;
  padding: 25px;
  background: #0d63c9;
  color: white;
  margin-top: 40px;
}
