/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  color: #333;
}

/* Page Title */
.courier-page-title {
  background: url('../img/cta-bg2.jpg') center/cover no-repeat;
  text-align: center;
  color: var(--white);
  padding: 100px 20px;
  position: relative;
}

.courier-page-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.courier-breadcrumbs ol {
  list-style: none;
  padding: 0;
  text-align: center;
}

.courier-breadcrumbs ol li {
  display: inline;
  margin-right: 5px;
  color: #fff;
}

/* About Section */
.courier-about {
  background: #f4f4f4;
  padding: 50px 20px;
  text-align: center;
}

/* Services Section */
.courier-services {
  padding: 50px 20px;
  background: #fff;
}

.courier-service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.courier-service-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.courier-service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.courier-service-content {
  padding: 20px;
}

.courier-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #0066cc;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
}

.courier-btn:hover {
  background: #04552f;
}

/* Why Choose Us */
.courier-why-us {
  background: #e6f2ff;
  padding: 50px 20px;
}

.courier-why-us ul {
  list-style: none;
  padding: 0;
}

.courier-why-us li {
  margin: 10px 0;
}

/* Call to Action */
.courier-cta {
  background: #0e1d34;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.courier-cta h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 2rem;
}

.courier-cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
