* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .pricing-section {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
            color: white;
        }

        .section-header h1 {
            font-size: 48px;
            margin-bottom: 10px;
        }

        .section-header p {
            font-size: 20px;
            opacity: 0.95;
        }

        .pricing-toggle {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .pricing-toggle span {
            color: white;
            font-weight: 500;
            font-size: 18px;
        }

        .toggle-switch {
            width: 60px;
            height: 30px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 15px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .toggle-switch:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: scale(1.05);
        }

        .toggle-switch.active {
            background: #4ade80;
        }

        .toggle-slider {
            width: 26px;
            height: 26px;
            background: white;
            border-radius: 50%;
            position: absolute;
            top: 2px;
            left: 2px;
            transition: transform 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .toggle-switch.active .toggle-slider {
            transform: translateX(30px);
        }

        .pricing-container {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            align-items: flex-start;
        }

        .left-column {
            flex: 2;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .right-column {
            flex: 1;
            position: sticky;
            position: -webkit-sticky;
            top: 20px;
            height: fit-content;
        }

        @media (max-width: 1024px) {
            .pricing-container {
                flex-direction: column;
            }
            .right-column {
                position: relative;
                top: 0;
                width: 100%;
            }
        }

        .packages-section, .addons-section {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .section-title {
            font-size: 24px;
            margin-bottom: 25px;
            color: #333;
            font-weight: 600;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }

		.selected .package-name, .selected .package-tagline {
			color: #000000 !important;
		}

		.selected .package-features li {
			color: #000000 !important;
		}

        @media (max-width: 1400px) {
            .packages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .packages-grid {
                grid-template-columns: 1fr;
            }
        }

        .package-card {
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            background: white;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .package-card.popular {
			border-color: #4ADE80;
			transform: scale(1.02);
			box-shadow: 0 10px 30px rgba(102,126,234,.15);
		}

        .popular-badge {
			position: absolute;
			top: -12px;
			right: 35px;
			background: linear-gradient(135deg, #4ADE80 0%, #017737 100%);
			color: #fff;
			padding: 4px 16px;
			border-radius: 20px;
			font-size: 12px;
			font-weight: 600;
			text-transform: uppercase;
		}

        .package-card:hover {
			transform: translateY(-5px);
			box-shadow: 0 15px 40px rgba(0,0,0,.1);
			border-color: #4ADE80;
		}

        .package-card.popular:hover {
            transform: scale(1.02) translateY(-5px);
        }

        .package-card.selected {
			border-color: #4ADE80;
			background: #F6FDF9;
			box-shadow: 0 10px 30px rgba(102,126,234,.15);
		}

        .package-card.selected::after {
            content: '✓';
            position: absolute;
            top: 10px;
            right: 10px;
            width: 24px;
            height: 24px;
            background: #3FCF75;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            animation: checkBounce 0.3s ease;
        }

        @keyframes checkBounce {
            0% {
                transform: scale(0);
            }
            60% {
                transform: scale(1.2);
            }
            100% {
                transform: scale(1);
            }
        }

        .package-name {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
        }

        .package-tagline {
            font-size: 13px;
            color: #606060;
            margin-bottom: 10px;
            font-style: italic;
            min-height: 20px;
        }

        .package-price {
			font-size: 18px;
			font-weight: 700;
			color: #009f4b;
			margin-bottom: 15px;
			display: flex;
			align-items: flex-end;
			gap: 2px;
			height: 45px;
		}

        .package-price .price-value {
            font-size: 36px;
            line-height: 1;
        }

        .package-price .dollar-sign {
            font-size: 18px;
            font-weight: normal;
            opacity: 0.8;
        }

        .package-price span:last-child {
            font-size: 14px;
            color: #666;
            font-weight: normal;
            margin-left: 3px;
        }

        .package-features {
            font-size: 12.5px;
            color: #484848;
            line-height: 1.4;
            flex-grow: 1;
            width: 100%;
            text-align: left;
        }

        .package-features ul {
            list-style: none;
            padding: 0;
			margin: 0 !important;
        }

        .package-features li {
            padding: 3px 0;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .package-features li:before {
            content: '•';
            color: #4ade80;
            font-weight: bold;
            flex-shrink: 0;
        }

        .custom-section {
            padding: 30px 20px;
            background: rgba(255,255,255,0.05);
            border-radius: 20px;
        }

        .custom-card {
			background: #005026;
			border-color: #005026;
			display: flex;
			flex-direction: row;
			align-items: center;
			text-align: left;
			gap: 30px;
			padding: 30px;
			min-height: auto;
			width: 100%;
		}
		.custom-left .package-name, .custom-left .package-tagline {
			color: #ffffff;
		}

		.custom-right .package-features li {
			color: #ffffff;
		}

        .custom-card .package-name {
            height: auto;
        }

        .custom-card .package-tagline {
            height: auto;
        }

        .custom-card .contact-btn {
			background: #cfffe1;
			margin-top: 20px;
			padding: 14px 32px;
			font-size: 17px;
			box-shadow: 0 4px 15px rgba(0,0,0,.2);
			color: #000000;
			border: none;
			border-radius: 8px;
			font-weight: 600;
			cursor: pointer;
			transition: all 0.3s ease;
		}

        .custom-card .contact-btn:hover {
			background: #00ff60;
			box-shadow: 0 6px 20px rgba(0,0,0,.3);
			transform: translateY(-3px);
		}

        .custom-card:hover {
			transform: translateY(-5px);
			border-color: #005026;
		}

        .custom-card.selected {
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
        }

        .custom-card .custom-left {
            flex: 1;
        }

        .custom-card .custom-right {
            flex: 1;
        }

        @media (max-width: 1200px) {
            .custom-card {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .custom-card {
                flex-direction: column;
            }
        }

        .addons-grid {
            display: grid;
            gap: 15px;
        }

        .addon-item {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
        }

        .addon-item:hover {
			background: #f9f9f9;
			transform: translateX(5px);
			box-shadow: 0 3px 10px rgba(0,0,0,.08);
			border-color: #4ADE80;
		}

        .addon-item.selected {
            border-color: #4ade80;
            background: linear-gradient(135deg, rgba(74, 222, 128, 0.03), rgba(34, 197, 94, 0.05));
            box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
        }

        .addon-item.selected:hover {
            transform: translateX(3px);
            box-shadow: 0 5px 15px rgba(74, 222, 128, 0.2);
        }

        .addon-checkbox {
            width: 20px;
            height: 20px;
            border: 2px solid #ccc;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .addon-item.selected .addon-checkbox {
            background: #4ade80;
            border-color: #4ade80;
            animation: checkBounce 0.3s ease;
        }

        .addon-item.selected .addon-checkbox:after {
            content: '✓';
            color: white;
            font-size: 14px;
            font-weight: bold;
        }

        .addon-details {
            flex: 1;
        }

        .addon-name {
            font-weight: 600;
            color: #333;
            margin-bottom: 3px;
        }

        .addon-description {
            font-size: 13px;
            color: #666;
        }

        .addon-pricing {
			text-align: right;
			min-width: 120px;
			position: relative;
			display: flex;
			align-items: flex-end;
			gap: 25px;
		}

        .addon-price {
			font-weight: 700;
			color: #009f4b;
			font-size: 18px;
			line-height: 1;
			display: flex;
			gap: 5px;
			flex-direction: column;
			align-items: flex-start;
			justify-content: flex-end;
		}

        .addon-price-value {
            font-size: 26px;
        }

        .addon-dollar {
            font-size: 16px;
            opacity: 0.8;
            font-weight: normal;
        }

        .addon-price-label {
            font-size: 11px;
            color: #484848;
            margin-top: 2px;
            font-weight: normal;
            text-transform: capitalize;
        }

		.addon-price span:nth-child(3) {
			color: #2a2a2a;
		}

        .addon-price.old-price {
            text-decoration: line-through;
            opacity: 0.5;
            font-size: 14px;
            color: #999;
            font-weight: normal;
            margin-bottom: 2px;
        }

        .addon-save-badge {
            background: linear-gradient(135deg, #4ade80, #22c55e);
            color: white;
            font-size: 11px;
            padding: 3px 8px;
            border-radius: 12px;
            font-weight: 600;
            margin-top: 5px;
            display: inline-block;
            box-shadow: 0 2px 5px rgba(74, 222, 128, 0.3);
            animation: subtle-pulse 2s infinite;
        }

        @keyframes subtle-pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.02);
            }
        }

        .addon-dropdown {
			width: 50%;
            margin-top: 10px;
        }

        .addon-dropdown select {
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 13px;
            width: 100%;
            cursor: pointer;
            background: white;
            transition: all 0.3s ease;
        }

        .addon-dropdown select:hover {
            border-color: #667eea;
        }

        .addon-dropdown select:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .calculator-summary {
            background: white;
            border-radius: 20px;
            padding: 0;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .summary-header {
			background: #45ff8b;
			padding: 25px 30px;
			color: #000000;
		}

        .summary-title {
			font-size: 24px;
			margin: 0px;
			font-weight: bold;
			color: #000000;
		}

        .summary-content {
			padding: 10px 30px 0 30px;
		}

        .summary-items {
            margin-bottom: 40px;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.2s ease;
        }

        .summary-item:hover {
            padding-left: 5px;
        }

        .summary-item:last-child {
            border-bottom: none;
        }

        .summary-label {
			color: #2a2a2a;
			font-size: 16px;
			font-weight: 500;
		}
        .summary-value {
            font-weight: 600;
            color: #333;
            font-size: 15px;
        }

        .summary-total-section {
            background: #f8f9ff;
            margin: -30px -30px 0 -30px;
            padding: 25px 30px;
            border-top: 2px solid #667eea;
        }

        .summary-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

		.summary-addons-title {
			margin-top: 20px;
			margin-bottom: 10px;
			font-size: 18px;
			color: #005026 !important;
			font-weight: 600; /* Assuming H3 default, but explicitly set for robustness */
			border-bottom: 1px solid #f0f0f0; /* Optional: adds a subtle line */
			padding-bottom: 5px; /* Spacing below the line */
			display: block; /* Ensure it takes its own line */
		}
		button#shareQuoteBtn {
			background: #ffffff !important;
			color: #000000;
			border: 2px solid #000000;
			margin-top: 10px;
			padding: 12px;
		}

        .total-label {
            font-size: 18px;
            color: #555;
            font-weight: 500;
        }

        .total-amount {
			font-size: 22px;
			font-weight: normal;
			color: #000000;
		}
		span#totalAmount {
			font-size: 26px;
			margin-left: 3px;
			font-weight: bold;
		}

        .total-amount span {
			font-size: 14px;
			opacity: 1;
			font-weight: 400;
			color: #2a2a2a;
		}

        .get-started-btn {
			width: 100%;
			padding: 16px;
			background: #2a2a2a;
			color: #fff;
			border: none;
			border-radius: 12px;
			font-size: 18px;
			font-weight: 600;
			cursor: pointer;
			transition: all 0.3s ease;
			margin-top: 10px;
			position: relative;
			overflow: hidden;
		}

        .get-started-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .get-started-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .get-started-btn:hover:before {
            left: 100%;
        }

        .savings-badge {
			background: #2a2a2a;
			color: #fff;
			padding: 8px 16px;
			border-radius: 25px;
			font-size: 13px;
			font-weight: 600;
			display: inline-block;
			animation: pulse 2s infinite;
			margin-top: 8px;
			box-shadow: 0 4px 15px rgba(74,222,128,.3);
		}

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
/* New styles for months selection inputs */
.summary-item.package-months-selection {
    align-items: center;
    gap: 10px;
}
.summary-item.package-months-selection .summary-value {
    flex-grow: 1; /* Pushes 'Months' label to the right */
    text-align: right;
}
.summary-item.package-months-selection input[type="number"] {
    flex-shrink: 0; /* Prevents input from shrinking */
}
#addonsSummary .summary-item {
    margin-bottom: 10px;
    background: #e5fbe5;
    padding: 10px 10px;
    width: 105%;
    margin-left: -2.5%;
    border-radius: 8px;
}

.addon-months-selection {
    display: block;
    text-align: right;
}
.addon-months-selection label {
    display: inline-block; /* Keep label and input on same line */
    margin-right: 5px;
	color: #484848 !important;
}
.addon-months-selection input[type="number"] {
    display: inline-block;
    vertical-align: middle;
}