.calculator-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

.calculator-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculator-title {
    color: #2c5530;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.calculator-subtitle {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #2c5530;
    font-weight: 600;
    font-size: 16px;
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #d1e7dd;
    border-radius: 8px;
    font-size: 16px;
    background-color: white;
    transition: all 0.3s ease;
    outline: none;
}

.form-select:focus {
    border-color: #198754;
    box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.1);
}

.calculate-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calculate-btn:hover {
    background: linear-gradient(135deg, #157347 0%, #1aa085 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.3);
}

.result-container {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 5px solid #198754;
    display: none;
}

.result-title {
    color: #2c5530;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.result-price {
    font-size: 32px;
    font-weight: bold;
    color: #198754;
    margin-bottom: 15px;
}

.result-details {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
}

.warning-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 15px;
    margin-top: 20px;
    color: #856404;
    font-size: 14px;
}

.pest-icon {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
}

.service-details {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.service-item:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 600;
    color: #2c5530;
}

.service-price {
    font-weight: bold;
    color: #198754;
}
