.pest-calculator {
            max-width: 700px;
            margin: 20px auto;
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            font-family: Arial, sans-serif;
        }

        .calc-header {
            background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .calc-header h2 {
            font-size: 1.8em;
            margin: 0;
            font-weight: 600;
            color: white !important;
        }

        .calc-tabs {
            display: flex;
            background: #f5f5f5;
            border-bottom: 2px solid #e0e0e0;
        }

        .calc-tab {
            flex: 1;
            padding: 12px 8px;
            text-align: center;
            cursor: pointer;
            background: #f5f5f5;
            border: none;
            font-size: 0.9em;
            font-weight: 500;
            color: #555;
            transition: all 0.3s ease;
        }

        .calc-tab.active {
            background: #2c5530;
            color: white;
        }

        .calc-tab:hover {
            background: #4a7c59;
            color: white;
        }

        .tab-content {
            display: none;
            padding: 25px;
        }

        .tab-content.active {
            display: block;
        }

        .service-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
            padding: 15px;
            border: 2px solid #e8f5e8;
            border-radius: 8px;
            background: #fafafa;
        }

        .service-row.selected {
            border-color: #2c5530;
            background: #f8fbf8;
        }

        .service-info {
            flex: 1;
        }

        .service-name {
            font-weight: 600;
            color: #1a3a1e;
            margin-bottom: 5px;
        }

        .service-price {
            color: #4a7c59;
            font-weight: bold;
            font-size: 0.95em;
        }

        .service-controls {
            display: flex;
            align-items: center;
            margin-left: 20px;
        }

        .service-checkbox {
            margin-right: 15px;
            transform: scale(1.3);
            accent-color: #2c5530;
        }

        .control-group {
            display: flex;
            align-items: center;
            margin-left: 15px;
        }

        .control-group label {
            margin-right: 8px;
            font-size: 0.9em;
            color: #555;
            white-space: nowrap;
        }

        .control-group select,
        .control-group input[type="range"] {
            margin-right: 10px;
        }

        .control-group select {
            padding: 5px 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 0.9em;
        }

        .control-group input[type="range"] {
            width: 100px;
            height: 6px;
            border-radius: 3px;
            background: #e8f5e8;
            accent-color: #2c5530;
        }

        .range-value {
            font-weight: bold;
            color: #4a7c59;
            font-size: 0.9em;
            min-width: 60px;
        }

        .pest-tags {
            display: flex;
            flex-wrap: wrap;
            margin-top: 10px;
        }

        .pest-tag {
            background: #e8f5e8;
            color: #2c5530;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.8em;
            margin-right: 6px;
            margin-bottom: 4px;
        }

        .results-panel {
            background: linear-gradient(135deg, #f8fbf8 0%, #e8f5e8 100%);
            padding: 20px;
            border-top: 3px solid #2c5530;
        }

        .results-grid {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }

        .result-item {
            background: white;
            padding: 12px 15px;
            margin-right: 15px;
            margin-bottom: 10px;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            min-width: 150px;
        }

        .result-label {
            font-size: 0.9em;
            color: #555;
            margin-bottom: 5px;
        }

        .result-value {
            font-size: 1.3em;
            font-weight: bold;
            color: #2c5530;
        }

        .total-display {
            text-align: center;
            background: #2c5530;
            color: white;
            padding: 15px;
            border-radius: 8px;
        }

        .total-label {
            font-size: 1em;
            margin-bottom: 5px;
            opacity: 0.9;
        }

        .total-amount {
            font-size: 2em;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .calc-tabs {
                flex-wrap: wrap;
            }
            
            .calc-tab {
                flex: 1 1 50%;
                font-size: 0.8em;
                padding: 10px 5px;
            }
            
            .service-row {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .service-controls {
                margin-left: 0;
                margin-top: 10px;
                flex-wrap: wrap;
            }
            
            .control-group {
                margin-left: 0;
                margin-top: 8px;
            }
            
            .results-grid {
                justify-content: center;
            }
        }