/* About Page Layout */
.about-section {
  background-color: #fff;
  padding: 80px 0;
}

.about-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

/* Text Content */
.about-text {
  flex: 1 1 55%;
}

.about-text h2 {
  font-size: 2rem;
  color: #287094;
  margin-bottom: 16px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.about-text ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  color: #444;
}

.about-text li {
  margin-bottom: 10px;
}

/* Image Column */
.about-image {
  flex: 1 1 40%;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Primary Button */
.btn-primary {
  display: inline-block;
  background-color: #287094;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 30px;
}

.btn-primary:hover {
  background-color: #023246;
}
.hero {
  background-color: #f6f6f6;
  padding: 100px 0 80px;
  text-align: left;
}

.hero-inner p {
  font-size: 1.2rem;
  color: #555;
  font-weight: 500;
  max-width: 600px;
}
.hero-inner h1 {
  font-size: 3.5rem; /* Bigger than default */
  font-weight: 800;
  color: #023246;
  margin-bottom: 20px;
  line-height: 1.2;
}
