
/* ---------------------------------------- */
/* ------  START-- SERVICES SECTION  ------ */
/* ---------------------------------------- */
    /* body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        
    } */

    #services_001 {
        background-color: #FFF;
        margin: 0;
        padding: 0;
    }

    .services-heading {
        background-color: #ff7f00;
        color: #fff;
        text-align: center;
        padding: 10px;
        margin: 20px -20px 20px -20px;
        font-size: 24px;
    }

    .services-parent {
        display: flex;
        padding: 0 20px;
    }

    .services-image {
        background-image: url('images/glenn-carstens-peters-Services-Image.jpg');
        background-size: cover;
        background-position: center;
        width: 40%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0 20px 0 20px;
        margin: 2rem auto;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px 0 0 8px;
    }

    .services-container {
        background-color: #FF9933;
        padding: 0 20px 0 20px;
        border-radius: 0 8px 8px 0;
        width: 60%;
        margin: 2rem auto;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .services-container h2 {
        font-size: 3.0rem;
    }

    h2 {
        color: white;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    .service-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
    }
    .icon-circle {
        background-color: #3399FF;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
    }
    .icon-circle svg {
        width: 24px;
        height: 24px;
        fill: white;
    }
    .service-content h3 {
        color: white;
        margin: 0 0 0.5rem 0;
        font-size: 2.0rem;
    }
    .service-content p {
        color: white;
        margin: 0;
    }
    .learn-more-btn {
        background-color: #FFB347;
        color: white;
        border: none;
        padding: 0.5rem 1rem;
        font-size: 1rem;
        border-radius: 4px;
        cursor: pointer;
        margin-top: 1rem;
        transition: background-color 0.3s ease;
    }
    .learn-more-btn:hover {
        background-color: #FFA500;
    }
/* ------  END -- SERVICES SECTION  ----- */