.sub-osbpage-header h2 {
    font-size: 28px;
    font-weight: 100;
    font-family: 'Poppins';
    color: #4f6439;
}

/* Button */
.btn-select-service,
.btn-select-service:hover,
.btn-select-service:focus,
.btn-select-service:active,
.btn-select-service:visited {
    display: inline-block;
    padding: 8px 16px;
    background: #1b7a1e;
    color: #fff !important;
    border-radius: 4px;
    text-decoration: none !important;
    outline: none;
}

.btn-select-service:hover {
    background: #9e8154;
    color: #fff;
}

/* Wrapper layout */
#mainwrapper {
    display: flex;
    flex-wrap: wrap;
}

#mainwrapper > .col-md-4 {
    display: flex;
}

/* Card */
.information_box {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.information_box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

/* Content inside card */
.full-caption {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.full-caption .full-desc {
    flex: 1; /* fills remaining space so button stays at bottom */
    font-size: 14px;
}

.service-action {
    margin-top: 15px;
}

/* Image */
.information_box_img img {
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    display: block;
    width: 100%;
}
.form-select {
       height: 40px !important;
}
.information_box .full-caption h3 {
    font-size: 24px;    
 }