.elementor-24312 .elementor-element.elementor-element-06ab979{--display:flex;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for html, class: .elementor-element-76e716e */.container {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            position: relative; /* Needed for footer to not overlap */
            padding-bottom: 110px; /* Adjusted for smaller sticky footer */
        }

        .header {
            background: white; /* Changed to white */
            color: #2c5530; /* Changed text color to green */
            padding: 30px;
            display: grid; /* Use grid for precise layout */
            /* Define 3 columns: logo width | title fills rest | spacer width (same as logo) */
            grid-template-columns: 126px 1fr 126px;
            grid-template-rows: auto auto auto; /* For h1, subtitle, new link */
            align-items: center; /* Vertically center items within their grid rows */
            text-align: center; /* Default text alignment for children */
        }

        /* Specific grid placement and styling for header elements */
        .logo-link {
            grid-column: 1 / 2; /* Place in the first column */
            grid-row: 1 / 3; /* Span two rows (h1 and subtitle) */
            display: flex; /* Use flex to center the image within its grid cell */
            align-items: center;
            justify-content: center;
            padding-right: 15px; /* Spacing between logo and title */
        }

        .header-logo {
            width: 126px;
            height: 126px;
            object-fit: contain; /* Ensure SVG scales properly */
        }

        .header-title {
            grid-column: 2 / 3; /* Place in the second column */
            grid-row: 1 / 2; /* First row */
            font-size: 2.5em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1); /* Lighter shadow for white background */
            color: #2c5530; /* Ensure title text is green */
            /* margin: 0 auto; Not needed with grid and explicit column sizing */
            text-align: center; /* Center text within its grid cell */
            align-self: end; /* Align to the end of its row vertically */
        }

        .header-spacer {
            grid-column: 3 / 4; /* Place in the third column */
            grid-row: 1 / 2; /* First row */
            width: 126px; /* Explicit width to balance the logo column */
            visibility: hidden; /* Keep invisible but take up space */
        }

        .header-subtitle {
            grid-column: 1 / -1; /* Span all columns */
            grid-row: 2 / 3; /* Second row */
            font-size: 1.1em;
            opacity: 0.9;
            margin-top: 5px;
            color: #4a7c59; /* Subtitle text color */
            text-align: center;
        }

        .header-link {
            grid-column: 1 / -1; /* Span all columns */
            grid-row: 3 / 4; /* Third row */
            margin-top: 10px; /* Space from subtitle */
            text-align: center;
        }
        .header-link a {
            color: #4a7c59; /* Link color */
            text-decoration: underline;
            font-weight: 500;
        }
        .header-link a:hover {
            color: #2c5530; /* Darker green on hover */
        }


        .tabs {
            display: flex;
            background: #f8f9fa;
            border-bottom: 2px solid #e9ecef;
            overflow-x: auto; /* Allows horizontal scrolling for tabs */
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            -webkit-overflow-scrolling: touch; /* Improves scrolling on iOS */
        }

        .tab {
            flex-shrink: 0; /* Prevent tabs from shrinking */
            min-width: 120px; /* Ensure a minimum readable width for each tab */
            padding: 20px;
            text-align: center;
            cursor: pointer;
            background: #f8f9fa !important;
            border: none;
            font-size: 1.1em;
            font-weight: 600;
            color: #6c757d !important;
            transition: all 0.3s ease;
            white-space: nowrap; /* Prevent tab text from wrapping */
            display: flex; /* Use flex to center icon/text if present */
            align-items: center;
            justify-content: center;
        }

        .tab:hover {
            background: #e9ecef !important;
            border-color:#4a7c59 !important;
            color: #495057 !important;
        }

        .tab.active {
            background: white;
            color: #4a7c59;
            border-bottom: 3px solid #4a7c59;
        }
        /* Span for tab totals */
        .tab span {
            font-size: 0.8em;
            margin-left: 5px;
            opacity: 0.8;
        }


        .tab-content {
            display: none;
            padding: 30px;
            animation: fadeIn 0.3s ease-in;
        }

        .tab-content.active {
            background: white;
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .section {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid #e9ecef;
        }

        .section h3 {
            color: #4a7c59;
            margin-bottom: 20px;
            font-size: 1.3em;
            border-bottom: 2px solid #f8f9fa;
            padding-bottom: 10px;
        }

        .input-group {
            margin-bottom: 20px;
        }

        .input-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #495057;
        }

        .radio-group, .checkbox-group {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 10px;
        }

        .radio-group label, .checkbox-group label {
            display: flex;
            align-items: center;
            font-weight: normal;
            cursor: pointer;
            margin-bottom: 0;
            color: #495057; /* Ensure labels are visible */
        }

        .radio-group input[type="radio"], .checkbox-group input[type="checkbox"] {
            margin-right: 8px;
        }

        .number-input {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
            width: 100%;
        }

        .number-input input[type="number"] {
            flex-grow: 1;
            flex-shrink: 1;
            min-width: 80px;
            padding: 10px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1em;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .number-input input[type="number"]:focus {
            border-color: #4a7c59;
            outline: none;
            box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.2);
        }

        .number-input select {
            padding: 10px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1em;
            background-color: #fff;
            cursor: pointer;
        }

        .button {
            display: block;
            width: 100%;
            margin-top: 25px;
            text-decoration: none; /* Remove underline from anchor */
        }

        .button button {
            display: block; /* Make the button take full width of its container */
            width: 100%;
            padding: 15px 25px;
            background-color: #2c5530;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.2em;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.1s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .button button:hover {
            background-color: #1a3d1e;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }

        .button button:active {
            transform: translateY(0);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }

        .result-item, .total-result {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px dashed #e9ecef;
            font-size: 1.1em;
        }

        .total-result {
            font-weight: bold;
            font-size: 1.3em;
            color: #2c5530;
            border-bottom: none;
            padding-top: 20px;
            border-top: 2px solid #4a7c59; /* Stronger line for total */
            margin-top: 15px;
        }

        .note {
            font-size: 0.9em;
            color: #6c757d;
            margin-top: 10px;
            text-align: center;
            line-height: 1.4;
        }

        /* Styles for the offset section within the Results tab */
        .offset-section {
            padding-top: 25px;
            margin-top: 20px;
            border-top: 2px solid #f8f9fa; /* A subtle separator */
        }

        .offset-section .offset-text {
            font-size: 1em;
            color: #495057;
            text-align: left;
            margin-bottom: 20px;
        }

        .offset-section .input-group .radio-label {
            font-size: 1.1em;
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
        }

        /* Footer and sticky button */
        .sticky-footer {
            position: sticky;
            bottom: 0;
            width: 100%;
            background: #2c5530;
            padding: 15px 20px;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
            text-align: center;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .sticky-footer .footer-button-link {
            width: 100%;
            max-width: 650px; /* Limit width of the button */
            margin-bottom: 10px;
            text-decoration: none;
        }

        .sticky-footer #offsetButton {
            width: 100%;
            padding: 18px 25px;
            background-color: #78a22f; /* Brighter green for call to action */
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.4em;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.1s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .sticky-footer #offsetButton:hover {
            background-color: #6a9223; /* Darker green on hover */
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

        .sticky-footer #offsetButton:active {
            transform: translateY(0);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }

        .sticky-footer .footer-note {
            font-size: 0.8em;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 5px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .header-title {
                font-size: 2em;
            }

            .tabs {
                flex-wrap: wrap; /* Allow tabs to wrap on smaller screens */
                justify-content: center;
            }

            .tab {
                min-width: unset; /* Remove min-width to allow more flexible wrapping */
                flex-basis: 48%; /* Roughly two tabs per row */
                margin: 2px; /* Small margin between wrapped tabs */
            }

            .tab-content {
                padding: 20px;
            }

            .section {
                padding: 20px;
            }

            .result-item, .total-result {
                font-size: 1em;
            }
            .total-result {
                font-size: 1.2em;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 15px;
            }
            .header {
                padding: 20px;
                grid-template-columns: 1fr; /* Single column layout for header */
                grid-template-rows: auto auto auto auto;
            }
            .logo-link {
                grid-column: 1 / 2;
                grid-row: 1 / 2; /* First row */
                padding-right: 0;
                margin-bottom: 10px;
            }
            .header-logo {
                width: 100px;
                height: 100px;
            }
            .header-title {
                grid-column: 1 / 2;
                grid-row: 2 / 3; /* Second row */
                font-size: 1.8em;
                margin-bottom: 5px;
            }
            .header-subtitle {
                grid-column: 1 / 2;
                grid-row: 3 / 4; /* Third row */
                font-size: 0.9em;
            }
            .header-link {
                grid-column: 1 / 2;
                grid-row: 4 / 5; /* Fourth row */
                margin-top: 5px;
            }
            .header-spacer {
                display: none; /* Hide spacer on small screens */
            }

            .tabs {
                flex-direction: column; /* Stack tabs vertically */
            }

            .tab {
                width: 100%; /* Full width for stacked tabs */
                border-bottom: 1px solid #e9ecef; /* Add border for separation */
            }

            .tab:last-child {
                border-bottom: none;
            }

            .number-input {
                flex-direction: column;
                align-items: flex-start;
            }
            .number-input input[type="number"],
            .number-input select {
                width: 100%;
            }
            .radio-group, .checkbox-group {
                flex-direction: column;
                gap: 8px;
            }
            .sticky-footer #offsetButton {
                font-size: 1.2em;
                padding: 15px 20px;
            }
        }/* End custom CSS */