﻿
.first-section {
    background-image: url('/img/serviceimg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 500px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end; /* Align child to bottom */
}

.first-section h1 {
    color: white;
    margin: 20px;
    padding: 20px; /* Optional spacing from bottom */
}

.bullet-text {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

    .bullet-text::before {
        content: "•";
        position: absolute;
        left: 0;
        top: 0;
        color: #000;
        font-size: 1.2rem;
        line-height: 1.4;
    }

.why-icon {
    width: 80px;
    height: 80px;
    background-color: #01962E;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}


