.page-header-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.page-header-section::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); /* dark overlay for readability */
    z-index: 1;
}

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

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

.page-header-section .breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 10px;
    font-size: 15px;
    color: #ddd;
}

.page-header-section .breadcrumbs li a {
    color: #fff;
    text-decoration: none;
}

.page-header-section .breadcrumbs li.active {
    color: #ccc;
}



















.two-column-section {
    padding: 80px 0;
}

.two-column-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.two-column-section .col {
    flex: 1 1 50%;
}

.two-column-section .col.left h5 {
    font-size: 16px;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.two-column-section .col.left h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.two-column-section .col.left p {
    font-size: 18px;
    line-height: 1.6;
}

.two-column-section .col.right img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .two-column-section .container {
        flex-direction: column;
    }
}
















.features-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #d8d6d6;
}

.features-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.features-section .feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.features-section .feature-list li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: left;
}

.features-section blockquote {
  font-size: 20px;
  font-style: italic;
  color: #444;
  margin: 30px auto;
  max-width: 700px;
}

.btn.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0073e6;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 18px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn.primary-btn:hover {
  background: #005bb5;
}

.btn.primary-btn svg {
  fill: #fff;
}
