/* Area 3 - Features List Styling */
.feature-area-v3 {
    padding-top: 30px;
}

.feature-area-v3 .area-title {
    font-size: 50px;
    font-weight: 700;
    color: #176CB4;
    margin-bottom: 40px;
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.feature-area-v3 .row {
    align-items: flex-start;
}

.feature-area-v3 .single-image {
    height: 100%;
}

.feature-area-v3 .single-image img {
    width: 500%;
    height: auto;
    min-height: 600px;
    object-fit: contain;
    margin-top: -50px;
    margin-left: -50px;
}

.features-list {
    padding-left: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    min-height: 40px;
}

.feature-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #176CB4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 27px;
    color: #176CB4;
}

.feature-item:hover .feature-icon {
    background-color: #176CB4;
    transform: scale(1.1);
    position: relative;
    z-index: 99;
}

.feature-item:hover .feature-icon i {
    color: #ffffff;
}

.feature-content {
    flex: 1;
    margin-top: 0px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #176CB4;
    margin-bottom: 0px;
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.feature-desc {
    font-size: 15px;
    line-height: 1;
    color: #666666;
    margin-bottom: 0;
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* Area 5 - Ergonomic Design Image Styling */
/* Area 5 - Ergonomic Design Image Styling */
.area-5 {
    position: relative;
    overflow: hidden;
    padding-top: 0px !important;
    /* Move content up */
}

.area-5 .single-image {
    position: absolute;
    right: -50px;
    /* Pull it right to cover any gap */
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    /* Make it wide enough to cover */
    margin: 0;
    padding: 0;
    z-index: 1;
}

.area-5 .single-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Area 5 - Feature styling overrides */
.area-5 .feature-item {
    margin-bottom: 35px;
    /* Space between each feature - increased 2px */
    min-height: 40px;
    /* Minimum height per feature - matches Area 3 */
}

.area-5 .feature-icon {
    margin-right: 20px;
    /* Space between icon and text - matches Area 3 */
}



.area-5 .feature-title {
    font-size: 18px;
    /* Feature title size - matches Area 3 */
    margin-bottom: 4px;
    /* Space below title - increased */
}

.area-5 .feature-desc {
    font-size: 15px;
    /* Description text size - matches Area 3 */
    line-height: 1;
    /* Line spacing in description - matches Area 3 */
    margin-bottom: 0;
}

/* Custom Extra Light Feature Badge */
.area-5 .feature-icon.extra-light-feature {
    position: relative;
    border: 3px solid #62C5FA;
    /* Light blue border */
    background: transparent;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
    /* Allow floating icon to show */
    width: 81px;
    height: 81px;
}

.area-5 .feature-icon.extra-light-feature .badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.area-5 .feature-icon.extra-light-feature .sub-text {
    font-size: 13px;
    color: #333;
    margin-bottom: 2px;
}

.area-5 .feature-icon.extra-light-feature .weight-text {
    font-size: 24px;
    font-weight: 800;
    color: #176CB4;
}

.area-5 .feature-icon.extra-light-feature .floating-icon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.area-5 .feature-icon.extra-light-feature .floating-icon i {
    font-size: 14px;
    color: #000;
}