/* General */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8fbff;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Page Section Layout */
.page-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  flex-wrap: wrap;
  background-color: #f3f8fd;
}

.page-content {
  flex: 1;
  max-width: 50%;
}

.page-content h3 {
  margin-top: 10%;
  color: #1a4b84;
  font-size: 18px;
  margin-bottom: 10px;
}

.page-content h1 {
  color: #002855;
  font-size: 26px;
  margin-bottom: 20px;
}

.page-content p {
  color: #1a4b84;
  font-size: 17px;
  margin-bottom: 15px;
  line-height: 1.7;
}

.contact-btn {
  display: inline-block;
  background-color: #002855;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.contact-btn:hover {
  background-color: #004aad;
}

.page-image {
  margin-top: 5%;
  flex: 1;
  max-width: 85%;
  text-align: right;
}

.page-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Freight Process Section */
#process-flow {
  background-color: #e9f2fb;
  padding: 60px 10%;
  text-align: center;
  border-top: 3px solid #004aad;
}

#process-flow h2 {
  color: #002855;
  font-size: 28px;
  margin-bottom: 15px;
}

#process-flow p {
  color: #333;
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 17px;
  line-height: 1.7;
}

.process-flow-img img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.step {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step h3 {
  color: #004aad;
  margin-bottom: 10px;
}

.step p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .page-section {
    flex-direction: column;
    text-align: center;
  }

  .page-content, .page-image {
    max-width: 100%;
  }

  .page-image {
    text-align: center;
    margin-top: 30px;
  }
}
