﻿
/* Logo styling */
.logo-container {
    text-align: center;
    margin-bottom: 15px;
}

.logo {
    max-width: 150px;
}

/* Jumbotron styling */
.jumbotron {
    text-align: center;
    padding: 50px 20px;
    /* Removed background-color to inherit from body (#f0f0f0) */
}

/* What We Do paragraph styling */
.what-we-do p {
    line-height: 1.6;
    font-size: 1.1em;
}

/* Flex container for text and image layout */
.content-with-image .flex-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin: 20px 0;
}

.list-left {
    flex: 1;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .list-left li {
        margin-bottom: 10px;
    }

.image-right {
    flex: 1;
    max-width: 60%; /* Set to 60% as per your preference */
    /*padding: 10px;*/ /* Padding to give shadow space */
    /*background-color: #ffffff;*/ /* White background for image container to contrast with page */
    /*border-radius: 10px;*/ /* Slightly larger radius for the container */
}

    .image-right .static-image {
        width: 100%;
        height: auto;
        border: 0px solid #999999;  /*Thicker, darker border for visibility */
        /*box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);*/ /* Stronger shadow with more depth */
        border-radius: 8px; /* Rounded corners for a softer look*/ 
        /*padding: 5px;*/  /*Inner padding to enhance framing */
    }

/* Call-to-Action styling */
.call-to-action {
    text-align: center;
    padding: 40px 20px;
    /* Removed background-color to inherit from body (#f0f0f0) */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-with-image .flex-container {
        flex-direction: column;
        align-items: center;
    }

    .image-right {
        max-width: 100%;
    }

    .list-left {
        width: 100%;
    }
}
