.inspection-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Custom Badge / Pill */
.badge-custom {
    background-color: #f0f0f0;
    color: #555;
    padding: 3px 16px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    font-family: var(--font-02);
}

/* Headings */
.inspection-title {
    font-weight: 800;
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    color: #000;
    text-transform: uppercase;
    font-family: var(--font-01);
}

/* Subtext / Descriptions */
.inspection-desc {
    font-size: 18px;
    color: #777;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.feature-list li {
    margin-bottom: 18px;
    font-size: 18px;
    color: #444;
    display: flex;
    align-items: flex-start;
    font-weight: 500;
    font-family: var(--font-02);
}

.feature-list li i {
    color: #000; /* Black checkmarks to match design */
    font-size: 15px;
    margin-top: 4px;
    margin-right: 12px;
}
.mingcute--check-2-fill {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  margin-top: 4px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='m12.594 23.258l-.012.002l-.071.035l-.02.004l-.014-.004l-.071-.036q-.016-.004-.024.006l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.016-.018m.264-.113l-.014.002l-.184.093l-.01.01l-.003.011l.018.43l.005.012l.008.008l.201.092q.019.005.029-.008l.004-.014l-.034-.614q-.005-.019-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.003-.011l.018-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='%23000' d='M19.495 3.133a1 1 0 0 1 1.352.309l.99 1.51a1 1 0 0 1-.155 1.279l-.003.004l-.014.013l-.057.053l-.225.215a84 84 0 0 0-3.62 3.736c-2.197 2.416-4.806 5.578-6.562 8.646c-.49.856-1.687 1.04-2.397.301l-6.485-6.738a1 1 0 0 1 .051-1.436l1.96-1.768A1 1 0 0 1 5.6 9.2l3.309 2.481c5.169-5.097 8.1-7.053 10.586-8.548'/%3E%3C/g%3E%3C/svg%3E");
}
/* =========================================
 PARALLAX CENTER IMAGE
 ========================================= */
.center-image-wrapper {
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  width: 100%;
  min-height: 550px; /* Gives the window a height so it matches the text columns */
  
  /* Insert your image URL here */
  background-image: url('https://www.verticehomeinspection.ca/public/VTHMISCTION/themeaB9xY12z/assets/images/about/about2.webp'); 
  
  /* THE PARALLAX MAGIC */
  /*background-attachment: fixed;*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .center-image-wrapper {
        margin: 40px 0; /* Adds spacing when stacked on mobile/tablet */
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .inspection-title {
        font-size: 28px;
    }
}