 body {
            font-family: Arial, sans-serif;
            background-color: #ffffff;
            color: #333;
            margin: 0;
            padding: 0;
        }
        .header {
            background-color: #005f33;
            color: #ffffff;
            text-align: center;
            padding: 20px;
            font-size: 24px;
            font-weight: bold;
        }
        .sub-header {
            background-color: #000;
            color: #ffffff;
            text-align: center;
            padding: 10px;
            font-size: 18px;
        }
       /* Increase container size slightly & improve vertical spacing */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto; /* Increased vertical margin */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: #e6f4ea;
    padding: 30px; /* Increased padding for better spacing */
    border-radius: 10px;
}
        .column {
            flex: 1;
        }
        .center-column {
            flex: 0.4;
            text-align: center;
        }
        .image-container img {
            max-width: 250px;
            height: auto;
            border-radius: 10px;
        }
        .left-list, .right-list {
            font-size: 18px;
            list-style: none;
            padding: 0;
        }
        .left-list {
            text-align: left;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        .right-list {
            text-align: right;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }
        .right-list li::after {
            content: " ✅";
            padding-left: 8px;
        }
        @media (max-width: 900px) {
            .container {
                flex-direction: column;
                text-align: center;
            }
            .center-column {
                flex: 1;
            }
            .image-container img {
                max-width: 200px;
            }
            .left-list {
                text-align: left;
                align-items: flex-start;
            }
            .right-list {
                text-align: right;
                align-items: flex-end;
            }
            .right-list li::after {
                content: " ✅";
                padding-left: 8px;
            }
        }
        .price-section {
            background-color: #ffcc00;
            padding: 20px;
            font-size: 22px;
            font-weight: bold;
            border-radius: 10px;
            text-align: center;
            margin-top: 20px;
        }
        .contact {
            text-align: center;
            margin-top: 20px;
            font-size: 18px;
        }
        .contact a {
            color: #005f33;
            font-weight: bold;
            text-decoration: none;
        }
        /* Free Demo Modal Styling */
        .cta-section {
            text-align: center;
            margin-top: 20px;
        }
        .cta {
            background-color: #ff0000;
            color: #ffffff;
            padding: 15px 20px;
            font-size: 20px;
            font-weight: bold;
            text-align: center;
            border-radius: 5px;
            display: inline-block;
            text-decoration: none;
            margin-top: 20px;
            cursor: pointer;
            border: none;
        }
        .cta:hover {
            background-color: #cc0000;
        }
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background-color: white;
            padding: 20px;
            width: 90%;
            max-width: 400px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .modal-content h2 {
            margin: 0 0 15px;
        }
        .form-group {
            margin-bottom: 15px;
            text-align: left;
        }
        .form-group label {
            display: block;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .form-group input {
            width: 90%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }
        .form-group button {
            background-color: #005f33;
            color: white;
            padding: 10px;
            font-size: 18px;
            border: none;
            width: 90%;
            border-radius: 5px;
            cursor: pointer;
        }
		.form-group textarea {
    width: 90%; /* Ensures full width */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    resize: vertical; /* Allows resizing up/down */
}
        .form-group button:hover {
            background-color: #004225;
        }
        .close-btn {
            background: none;
            border: none;
            font-size: 20px;
            float: right;
            cursor: pointer;
            color: #333;
        }
		.social-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 5px;
}

.small-text {
    font-size: 60%; /* Adjust percentage as needed */
    font-weight: normal; /* Optional: Adjust weight */
    opacity: 0.8; /* Optional: Makes it slightly less prominent */
}

/* Center Column Image Container */
.image-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px; /* Space between images */
}

/* Default: Set all images to a reasonable size */
.image-container img {
    height: auto;
    border-radius: 10px;
    width: 100%; /* Prevents hardcoding */
    max-width: 400px; /* Prevents excessive size */
}

/* If there's only one image */
.image-container img:only-child {
    width: 90%; /* Large single image */
    max-width: 450px;
}

/* If there are exactly 2 images */
.image-container img:nth-child(2):nth-last-child(1), 
.image-container img:nth-child(1):nth-last-child(2) {
    width: 48%; /* Side-by-side */
    max-width: 350px;
}

/* If there are 3 images */
.image-container img:nth-child(3):nth-last-child(1), 
.image-container img:nth-child(1):nth-last-child(3),
.image-container img:nth-child(2):nth-last-child(2) {
    width: 40%; /* 3 equally spaced */
    max-width: 320px;
}

/* If there are 4+ images */
.image-container img {
    width: 25%;
    max-width: 280px;
}

.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ff0000; /* Bright red */
    color: #ffffff; /* White text */
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Adjust the page content so it doesn't get hidden under the banner */
body {
    padding-top: 50px; /* Adjust depending on banner height */
}

/* Mobile adjustments */
@media (max-width: 900px) {
    .image-container img:only-child {
        width: 90%;
        max-width: 400px;
    }

    .image-container img:nth-child(2):nth-last-child(1), 
    .image-container img:nth-child(1):nth-last-child(2) {
        width: 45%;
        max-width: 320px;
    }

    .image-container img:nth-child(3):nth-last-child(1), 
    .image-container img:nth-child(1):nth-last-child(3),
    .image-container img:nth-child(2):nth-last-child(2) {
        width: 48%;
        max-width: 300px;
    }

    .image-container img:nth-child(n+4) {
        width: 40%;
        max-width: 220px;
    }
}

