.plc2-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    gap: 20px;
    border: 2px solid #C6003B;
    border-radius: 12px;
    padding: 30px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.plc2-calculator {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
}

.plc2-step {
    margin-bottom: 30px;
}

.plc2-step label {
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
    color: #333;
}

.plc2-input-group {
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap: 8px;
}

.plc2-input-group input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #C6003B;
    border-radius: 6px;
}

input[type="range"] {
    width: 100%;
    accent-color: #C6003B;
    height: 5px;
}

.plc2-hint {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.plc2-summary {
    flex: 1;
    min-width: 280px;
    border-left: 2px solid #C6003B;
    padding-left: 30px;
}

.plc2-summary h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}

.plc2-summary-content {
    text-align: center;
}
.plc2-pie {
    margin: 0 auto 20px;
    width: 100px;
    height: 100px;
    background: conic-gradient(#f0c75e 90%, #eee 10%);
    border-radius: 50%;
    position: relative;
	    transition: background 0.5s ease-in-out;

}

.plc2-circle {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: #fff;
    border-radius: 50%;
}

.plc2-label {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.plc2-breakdown {
    margin-top: 10px;
}

.plc2-breakdown p {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
    font-size: 14px;
}

.plc2-emi {
    text-align: center;
    margin-top: 20px;
}

.plc2-emi p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.plc2-emi h2 {
    margin-top: 5px;
    font-size: 24px;
    color: #111;
}
