/* Your existing CSS for other sections (if any) goes here */
                /* Regular content sections */
        .content-section-stats{
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: white ;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            overflow: hidden;
            position: relative;
            z-index: 1;
            background: rgba(0, 0, 0, 0.2);
            }

        /* Styles for the stats container and items */
        .stats-container {
            display: flex;
            width: 100%;
            justify-content: center;
            align-items: center;
            background-color: #daa54b; /* Background color similar to your image */
            padding: 80px 20px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .stat-item {
            text-align: center;
            color: #0f664c; /* Text color for numbers and labels */
            padding: 0 30px;
        }

        .stat-number {
            font-size: 3.5em;
            font-weight: bold;
            margin: 0 0 10px 0;
            line-height: 1;
        }

        .stat-label {
            font-size: 1.1em;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .vertical-divider {
            width: 2px;
            height: 80px;
            background-color: rgba(30, 107, 90, 0.5); /* Color of the divider, slightly transparent green */
            margin: 0 20px;
        }

        /* Responsive adjustments for smaller screens */
        @media (max-width: 768px) {
            .content-section-stats{
                height: 100%;
            }
            .stats-container {
                flex-direction: column;
            }
            .vertical-divider {
                display: none;
            }
            .stat-item {
                padding: 20px 0;
                border-bottom: 1px solid rgba(30, 107, 90, 0.2);
                width: 100%;
            }
            .stat-item:last-child {
                border-bottom: none;
            }
        }