.stats-section {
            background-color: #f9fafb; /* Section background */
            padding: 5rem 1.5rem;
            color: #1f2937; /* Dark text */
        }

        .stats-container {
            max-width: 1400px; /* Increased max-width to allow single row breathing room */
            margin: 0 auto;
        }

        /* Header Styling */
        .stats-header {
            text-align: left;
            max-width: 700px;
            margin: 0 0 4rem 0;
        }

        .stats-eyebrow {
            display: block;
            color: #009879; /* Primary Color */
            font-family: 'MesseUnivers-Bold', sans-serif;
            font-weight: normal; 
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        /* .stats-title {
            font-size: 2.5rem;
            font-family: 'MesseUnivers-Bold', sans-serif;
            font-weight: normal;
            margin: 0 0 1rem 0;
            line-height: 1.2;
        } */

        /* .stats-description {
            color: #6b7280; 
            font-size: 1.125rem;
            line-height: 1.6;
            margin: 0;
        } */

        /* Grid Layout */
        .stats-grid {
            display: grid;
            gap: 1rem;
            justify-content: center;
            /* Default (Mobile/Tablet): 2 columns */
            grid-template-columns: repeat(2, 1fr); 
        }

        /* Small Mobile: 1 column */
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Desktop: Force 7 columns for single row */
        @media (min-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        /* Card Styling */
        .stat-card {
            background-color: #ffffff; /* Card background */
            padding: 1.5rem 0.5rem; /* Reduced padding for compact size */
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(0,0,0,0.04);
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%; /* Ensure equal height */
        }

        /* Icons */
        .stat-icon-wrapper {
            /* Removed width/height/background for "no box" look */
            background-color: transparent; 
            color: #009879; /* Primary Color */
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 3rem; /* Significantly Bigger Icons */
        }

        /* Typography inside cards */
        .stat-number {
            display: block;
            font-size: 2.5rem; /* Slightly smaller to fit 7 in a row */
            font-family: 'Roboto', sans-serif;
            font-weight: 700; 
            color: #1f2937; /* Dark text */
            margin-bottom: 0.25rem;
            line-height: 1.2;
        }

        .stat-label {
            color: #6b7280; /* Light text */
            font-size: 1.25rem;
            font-family: 'Roboto', sans-serif;
            font-weight: normal;
            text-transform: capitalize;
            letter-spacing: 0.5px;
            line-height: 1.4;
        }

        /* Button */
        .stats-cta {
            margin-top: 4rem;
            text-align: center;
        }

        .btn-reserve {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background-color: #009879; /* Primary Color */
            color: white;
            text-decoration: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-family: 'MesseUnivers-Bold', sans-serif;
            font-weight: normal;
            font-size: 1rem;
            transition: background-color 0.2s ease;
        }

        .btn-reserve:hover {
            background-color: #007a61; /* Darker Primary */
        }

        /* Mobile Adjustments */
        /* @media (max-width: 640px) {
            .stats-title {
                font-size: 2rem;
            }
            .stats-section {
                padding: 3rem 1rem;
            }
        } */