/* Page Header */
.page-header {
  background-color: var(--primary-color);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('./asset/bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}


.brand {
  display: grid;
  grid-template-columns: 1fr 4fr; 
  gap: 2rem; 
  align-items: center;
}


.contact-info-section {
  margin-top: 30px;
}


.contact-form-wrapper {
  padding-bottom: 50px;
}

