
        .calculator-container {
           
            margin: 0 auto;
        
           
         
        }

        h1 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 30px;
            color: #4C4C4C;
        }

        .form-group {
            margin-bottom: 35px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            color: #4C4C4C;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .input-wrapper {
            position: relative;
        }

        .currency-symbol {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color:#4C4C4C;
            font-size: 16px;
        }

   input[type="text"], input[type="number"] {
    width: 100%;
    padding: 12px 15px 12px 30px;
    border: 1px solid #0529295C;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
    border-radius: 9px;
    height: 51px;
    background-color: transparent;
}

        input[type="text"]:focus,
        input[type="number"]:focus {
            outline: none;
            border-color: #4CAF50;
        }

        .slider-group {
            margin-bottom: 30px;
        }

        .slider-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .slider-label span:first-child {
            font-size: 18px;
            color: #4C4C4C;
            font-weight: 600;
            font-family: "GeneralSans-Regular", Sans-serif;
        }

        .slider-label span:last-child {
            font-size: 18px;
            color: #4C4C4C;
                  font-weight: 600;
                  font-family: "GeneralSans-Regular", Sans-serif;
        }

        .slider-wrapper {
            position: relative;
            padding: 10px 0;
        }

        input[type="range"] {
            width: 100%;
            height: 1px;
            -webkit-appearance: none;
            appearance: none;
            background: linear-gradient(90deg, #5ff3d0, #9b9cff);
            border-radius: 3px;
            outline: none;
            cursor: pointer;
        }

        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 32px;
            height: 32px;
           background-color: transparent;
            background-image: url('https://pension-led-funding.sproutwebsites.co.uk/wp-content/uploads/2026/02/Group-36.svg');
            background-repeat: no-repeat;
            background-position: center;
            background-size: 23px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            
            transition: transform 0.2s, box-shadow 0.2s;
        }

        input[type="range"]::-webkit-slider-thumb:hover {
            transform: scale(1.1);
           
        }

        input[type="range"]::-moz-range-thumb {
            width: 32px;
            height: 32px;
           background-color: transparent;
            background-image: url('https://pension-led-funding.sproutwebsites.co.uk/wp-content/uploads/2026/02/Group-36.svg');
            background-repeat: no-repeat;
            background-position: center;
            background-size: 23px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
           
            transition: transform 0.2s, box-shadow 0.2s;
        }

        input[type="range"]::-moz-range-thumb:hover {
            transform: scale(1.1);
           
        }

        /* Custom thumb icon - Replace the SVG data URI with your own image */
        /* To use custom image: background-image: url('path/to/your/icon.png'); */

        .slider-min-max {
            display: flex;
            justify-content: space-between;
            font-size: 18px;
            color: #4C4C4C;
            margin-top: 5px;
        }

        .quote-section {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 2px solid #f0f0f0;
        }

     .quote-section h2 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 25px;
	color: #4C4C4C;
	font-family: "Ivy-Presto-Text-Thin", Sans-serif;
	font-size: 30px;
	color: #052929;
}
        .quote-results {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .quote-item {
           
            padding: 0px ;
            border-radius: 6px;
        }

       .quote-label {
	font-size: 18px;
	color: #4C4C4C;
	margin-bottom: 8px;
	font-weight: 600;
	font-family: "GeneralSans-Regular", Sans-serif;
}

        .quote-value {
            font-size: 28px;
            font-weight: 600;
            color: #4C4C4C;
        }

        .quote-disclaimer {
            font-size: 11px;
            color: #999;
            line-height: 1.6;
            margin-top: 20px;
            padding: 15px;
           
            border-radius: 4px;
        }
input[type="range"]::-moz-range-track {
    width: 100%;
    height: 8.6px;
    cursor: pointer;
    box-shadow: none;
    background: rgba(255,255,255,.2);
    border-radius: 13.6px;
    border: 0 solid #fff;
}
        .error-message {
            color: #d32f2f;
            font-size: 13px;
            margin-top: 5px;
            display: none;
        }

        .error-message.show {
            display: block;
        }

        @media (max-width: 600px) {
            .calculator-container {
                padding: 10px;
            }

            .quote-results {
                grid-template-columns: 1fr;
            }

            .quote-value {
                font-size: 24px;
            }
        .slider-label span:first-child {
	font-size: 15px;

}
.slider-min-max {
	font-size: 14px;
	color: #4C4C4C;
}
.quote-section h2 {
	font-size: 20px;
}
.quote-label {
	font-size: 14px;
}
  .calculator-container h1 {
	font-size: 18px !important;
}
.form-group label {
	font-size: 15px !important;
}
            
        }